vote up 2 vote down star

MSDN says

If the function fails, the return value is WAIT_FAILED. To get extended error information, call GetLastError.

The code is:

HANDLE     m_mutex_handle;    /**< m_mutex_handle. The handle to the created mutex. */
m_mutex_handle = ::CreateMutex( 0, false, NULL );
::WaitForSingleObject( m_mutex_handle, INFINITE );

But what are the reasons that could happen?

flag

40% accept rate
1  
So, what does GetLastError() return? That usually gives you a pretty good clue. – Ferruccio Oct 17 '08 at 1:22

3 Answers

vote up 3 vote down

Passing in a bogus object might cause that.

link|flag
Passing in a seriously bogus object may even cause undefined behaviour, but perhaps the function checks for those cases. :-P – Chris Jester-Young Oct 17 '08 at 0:43
vote up 1 vote down

Closing a handle while the handle is being waited on can also cause undefined behaviour.

link|flag
vote up 5 vote down

If you lack the SYNCHRONIZE privilege on the object, then you cannot wait. WAIT_FAILED will be returned.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.