Assume that two spawned processes signaling using Win32 Events or semaphore,but When an event has be signal and reset within between 1 to 10 millisecond time interval.Sometimes Event set function - SetEvent failed to signal.
If every ,
SETEvent -> WAITFOSINGLEOBJECT/RESETEVENT -> SETEvent
calls happens rapidly ,
- Will Win32 Kernel event or Semaphore objects fails to propagate or signal among each two processes ?
- Is there better alternatives to rapid signaling among Windows inter-process?
(One Process is set/reset event other one waiting until signaled) (We can emulate Event behavior using Semaphores using single count)
PulseEvent
? – Oct 18 '17 at 09:30