The waitforsingleobject tag has no wiki summary.
0
votes
0answers
12 views
How does WaitForSingleObject handle missed events?
for a multi-threaded application (two threads) I have the following use-case:
Thread A sets an event to reactivate thread B.
Thread B uses WaitForSingleObject() to wait for this event.
Thread A ...
0
votes
1answer
34 views
Sometimes out of 5 times, 2-3 times, Threads gets deadlock in waitforsingleobject
I have two thread T1 and T2 which tries to print alrenatively through semaphore signaling. Each thread prints 10 times, but sometime, both gets blocked at WaitforSingleObject and does not print ...
0
votes
1answer
54 views
Why is this synchronization not working?
I have this code:
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define ITERATIONS 10
typedef struct NUMERE
{
...
1
vote
3answers
114 views
Time passed till WaitForSingleObject returned
Is there a way to know how much time passed from when I called WaitForSingleObject function untill it returned?
or that the only way of knowing is by using some kind of a timer?
0
votes
0answers
156 views
UI hangs when performed WaitForSingleObject in VC 6
I have an utility (server-client architecture). On File connect I will connect to the server and initialize thread for different PORTs(HIGHPORT, LOWPORT and MEDIUMPORT). On File exit I will disconnect ...
0
votes
2answers
544 views
Resolution of WaitForSingleObject with timeSetEvent & SetWaitableTimer
I am using a Win32 multimedia timer to put a delay between the dispatch of large numbers of UDP packets, but i am finding that the resulting delay is substantially longer than it should be. Delays of ...
2
votes
4answers
90 views
How to make process B running only while Process A is alive
I have a process A that starts another process B.
Currently process B waits for a signal(WaitForSingleObject) that is signaled by the process'A ' before exiting and once the signal is set the process ...
0
votes
1answer
177 views
repeating WaitForSingleObject in messages between to applications
I created two programs in C (producer and consumer) which send messages the one to each other
(using CreateEvent, SetEvent and WaitForSingleObject)
I implement one thread for each program to manages ...
0
votes
1answer
411 views
Win 8 Metro mode: WaitForSingleObjectEx failed
I'm trying to implement something like Sleep(msec) behavior in metro mode like this
void win8_metro_mode_sleep(unsigned long long ms)
{
HANDLE hEvent;
DWORD ret;
DWORD err;
DWORD msec ...
1
vote
2answers
664 views
wait for single object function usage
i am using WaitForSingleObject() function for implementing wait in my program.
WaitForSingleObject(eventToBeSigaled, timeOut);
all of us know that this function wait for the event to be signaled ...
5
votes
1answer
194 views
“machine sleep” + WaitForSingleObject + finite timeout
Strange question here -- but:
If I use WaitForSingleObject on a mutex with a 20 minute timeout. Then, the machine enters sleep mode (or hibernate) while waiting.... Upon wake 12 hours later -- will ...
2
votes
1answer
300 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
124 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 ...
0
votes
0answers
149 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 ...
1
vote
3answers
1k 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 ...
0
votes
1answer
265 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, ...
2
votes
2answers
914 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 ...
3
votes
2answers
2k 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 ...
4
votes
4answers
3k 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?
1
vote
2answers
510 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 ...
4
votes
4answers
2k 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 ...
6
votes
3answers
11k 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 ...
1
vote
1answer
669 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));
...
0
votes
2answers
245 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
...
2
votes
2answers
565 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 ...
0
votes
3answers
942 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 ...
1
vote
1answer
742 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 ...
7
votes
5answers
1k 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;
...
0
votes
2answers
193 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
110 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 ...
1
vote
1answer
786 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 ...
0
votes
2answers
765 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 ...
2
votes
1answer
1k 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 ...