Tagged Questions

3
votes
2answers
343 views

WaitForSingleObject with thread handle get stuck while running regsvr32.exe

I have thread A that is creating another thread B, than thread A is waiting using WaitForSingleObject to wait until thread B dies. The problem is that even though thread B returns from the thread's ...
2
votes
1answer
70 views

What are the benefits of using WaitForMultipleObjects instead of WaitForSingleObject in a loop?

I have a vector<HANDLE>. I want to wait for all of them to finish. I don't want to copy them over to an array. What are the benefits of doing so anyway and using WaitForMultpleObjects, rather ...
1
vote
1answer
539 views

Multithreaded Delphi 7 App - a problem with app termination

I have a descendent of TThread and a list of objects, each with its own copy of such thread and yet the Event object, created with CreateEvent() API. Different objects interact with each other by ...
1
vote
1answer
747 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 INVALID_HANDLE would be ...
0
votes
1answer
79 views

Recognizing synchronization object hanging two 3rd party executables

I'm using a 3rd party tool, which uses a 4th party plugin. Occasionally, the tool will hang when launched. Looking at the stack traces, I can see a few threads are waiting on WaitForSingleObject, and ...