System.SyncObjs.TConditionVariableMutex.Release

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Release; override;

C++

virtual void __fastcall Release();

Properties

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

Description

Wakes up a single thread sleeping on the mutex condition variable.

Call Release to wake up a single thread sleeping on the mutex condition variable.

Note: To reduce the number of context switches, make a call to Release after releasing the mutex.

See Also