Tagged Questions
4
votes
4answers
578 views
Is it possible to kill WaitForSingleObject(handle, INFINITE)?
I am having problems closing an application that uses WaitForSingleObject() with an INFINITE timout.
The full picture is this. I am doing the following to allow my application to handle the device ...
3
votes
2answers
288 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 ...
3
votes
4answers
378 views
SendMessage vs PostMessage + WaitForSingleObject
I was wondering what's the difference between calling SendMessage (which blocks) and calling PostMessage in conjunction with WaitForSingleObject.
Thoughts?
3
votes
3answers
1k views
How to wait for a shell process to finish before executing further code in VB6
I have a small VB6 app in which I use the Shell command to execute a program. I am storing the output of the program in a file. I am then reading this file and putting the output on the screen using a ...
2
votes
2answers
207 views
How do I know when CreateProcess actually started a process?
I'm having trouble which boils down to wishing CreateProcess were StartProcess. The trouble is that there are circumstances under which CreateProcess returns true when it created the process but the ...
1
vote
1answer
713 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
103 views
c get the return value of thread function & UI thread stucked
I wanted to use a thread to do something that could not return immediately when i click a button called button1
here is my code :
LRESULT CALLBACK DlgProc(HWND hWndDlg, UINT Msg, WPARAM wParam, ...
0
votes
2answers
558 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 generating ...