0
votes
2answers
71 views
Win32 Mutex not waiting.
I am creating an application that implements inter process communication.
For this purpose I have set up a shared buffer, which seems to work fine.
Now, I need a way for the data g …
0
votes
1answer
27 views
Very strange windbg behavior with WaitForSingleObject()
Below is my program and I am trying to get the call stack when the process is blocked in WaitForSingleObject() call using windbg. The strange thing is when the process is blocking, …
1
vote
1answer
96 views
Why does WaitForSingleObject(INVALID_HANDLE_VALUE, INFINITE) block?
Why does
HANDLE mutexHandle = INVALID_HANDLE_VALUE;
WaitForSingleObject(mutexHandle, INFINITE);
block? It does not return with an error message. Checking the handle for INVALI …
