Sets the specified event object to the signaled state.
BOOLEAN RtSetEvent( HANDLE hEvent );
hEvent
RtSetEvent can also be used from a Windows application to set an iwin32 event.
The state of a manual-reset event object remains signaled until set explicitly to the nonsignaled state by RtResetEvent. Any number of waiting threads, or threads that subsequently begin wait operations for the specified event object by calling a wait function; can be released while the object's state is signaled.
The state of an auto-reset event object remains signaled until a single waiting thread is released, at which time the system automatically sets the state to nonsignaled. If no threads are waiting, the event object's state remains signaled.
0
(zero)
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/nt/include/iwin32x.h | iwin32x.h | iwin32x.lib |
Notes
RtCreateEvent, RtResetEvent, iwin32x API, iwin32 Overview