System.SyncObjs.TLightweightEvent.ResetEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ResetEvent;

C++

void __fastcall ResetEvent();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.SyncObjs.pas
System.SyncObjs.hpp
System.SyncObjs TLightweightEvent

Description

Sets the event in non-signaled state.

Call ResetEvent to indicate that a necessary condition is not satisfied. Threads that call WaitFor are blocked in spin loops or at kernel level until the event is set in signaled state with SetEvent.

See Also