Tagged Questions

1
vote
3answers
236 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
0answers
67 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
2answers
577 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 ...