up vote 1 down vote favorite
1
share [g+] share [fb]

Is it safe to have 2 or more threads call the Win32 API's SetEvent on the same event handler not being protected by a critical section?

link|improve this question
1  
take a lookt at this link, it might address your concerns: blogs.msdn.com/oldnewthing/archive/2009/05/22/9634511.aspx – Andrey May 26 '09 at 20:03
feedback

3 Answers

up vote 1 down vote accepted

It's safe, but remember that if one thread Sets it, and another thread Sets it at the same time, you're not going to get two notifications, just one; since the 2nd one changed it from True to...True. If you're worried about this, use Semaphores instead.

link|improve this answer
feedback

Assuming you have multiple threads waiting on the same event, running the same code.

  1. If your code doesnt clear the event until its done processing, you effectively have a CS. Since the event remains signaled until it is cleared(aka not autoreset), having multiple threads signal the does nothing except spin the CPU.
  2. If your code clears it at the begining of processing or the event is autorset, then you would have multiple threads running the same function, which is unsafe if these threads share anything.
link|improve this answer
feedback

there are no restrictions on calling SetEvent from multiple threads.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.