WaitForMultipleObjects Problem!

Started by
10 comments, last by Codeka 14 years, 8 months ago
Thankyou all for your quick replies and a big thanks to Erik, it was indeed the use of a "Done" in CreateEvent that was the problem, setting to NULL and all works fine, thankyou again :) Ratings to All :)
Advertisement
The problem is that you've given them all the same name (it seems) which means they're actually all the same event.

In general, you shouldn't need to give your events (or mutexes or any other synchronization objects) a name unless you want to share them between processes.

This topic is closed to new replies.

Advertisement