VOID
KeClearEvent(
IN PKEVENT Event
);
KeClearEvent sets the given event to the Not-Signaled state.
Parameters
Event
Points to an initialized dispatcher object of type event for which the caller supplies the storage.
Comments
The state of Event is set to Not-Signaled, meaning its value is set to zero.
For better performance, use KeClearEvent unless the caller uses the value returned by KeResetEvent to determine what to do next.
Callers of KeClearEvent must be running at IRQL <= DISPATCH_LEVEL.
See Also
KeInitializeEvent, KeReadStateEvent, KeResetEvent, KeSetEvent