Tagged Questions
The waitforsingleobject tag has no wiki summary.
7
votes
5answers
273 views
Which is the correct way to wait for a Thread.finalization and keep my application responsive
Actually i am using this code and works ok, but i 'am wondering if is the correct way.
while WaitForSingleObject(MyThread.Handle, 0) = WAIT_TIMEOUT do
Application.ProcessMessages;
...
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
377 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
1answer
57 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 ...
2
votes
2answers
206 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
43 views
Should I lock the filter state during a DirectShow push source filter FillBuffer() call?
I have a DirectShow filter written Delphi 6 using the DSPACK component library. Currently I lock the filter state using the sync obj created for that purpose at the top of the FillBuffer() call and ...
1
vote
3answers
181 views
WaitForSingleObject and while loops in C/++
Here is the snippet:
prog1:
HANDLE hM;
hM = CreateMutexA(NULL,TRUE, "abc"); // I have to use TRUE otherwise WaitForSingleObject fails.. by design it wants to take ownership and w//o TRUE there is no ...
1
vote
2answers
135 views
Worker thread termination in MFC
What is the correct way to terminate a worker thread if it is taking too long to complete? I've read several articles claming that TerminateThread should be used with extreme caution, but I can't find ...
1
vote
2answers
210 views
Visual c++ thread with mutex not blocking
I'm developing with VC2005, and I'm having a problem with a thread.
I have a thread that dequeue data from a queue and send it. But this thread send one petition and have to wait for the answer to ...
1
vote
1answer
231 views
WaitForSingleObject gives Invalid Handle
h=CreateFile("c:\\test.txt",GENERIC_READ,FILE_SHARE_READ,NULL,OPEN_ALWAYS,FILE_ATTRIBUTE_READONLY|FILE_FLAG_OVERLAPPED,NULL);
OVERLAPPED ol2;
memset(&ol2,0,sizeof(OVERLAPPED));
...
1
vote
1answer
520 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
429 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, windbg only prints ...
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
0answers
58 views
Is this Windows thread synchronization strategy for my DirectShow push source filter (fairly) bulletproof?
I have a DirectShow push source filter written in Delphi 6 using the DSPACK component library. I am implementing a blocking strategy for the push source filter's FillBuffer() call. The push source ...
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
141 views
How do I send a string or information to a process I have opened with Createprocess in Delphi 7
How do I send a string to a process I have opened with the help of createprocess?
I've written something like this with the help of what I've found here in Stackoverflow:
var
...
0
votes
3answers
440 views
Pause script execution until an event is signaled by another running script?
I would like for the execution of one php script to wait for an event set during the execution of another script.
Lets say User A and User B are both visitors of my website. When User A visits ...
0
votes
2answers
136 views
Why aren't my variables holding state after WaitForSingleObject?
I am implementing a Go Back N protocol for a networking class. I am using WaitForSingleObject to know when the socket on my receiver thread has data inside it:
int result = ...
0
votes
1answer
76 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 ...
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 ...