I have a Delphi application running under Windows that needs to block until another thread has delivered data. In other words, I need to wait on a synchronization object that from a particular thread I can put into the non-signaled state as if another thread held ownership of the object, so that when I call WaitFor() the thread blocks until one of the other threads unblocks it (there are more than one potential thread that can unblock and it is not known in advance which one). Note, all the threads have access to a shared data area so access to a common synchronization object is not a problem.
I thought Events were the right choice until I read this troubling blog post by Raymond Chen on the the problems with PulseEvent():
http://blogs.msdn.com/b/oldnewthing/archive/2005/01/05/346888.aspx
What is the correct synchronization technique to achieve this result? If you have a link to a Delphi or C/C++ example that would be great.