System.SyncObjs.TMutex.Release

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Release; override;

C++

virtual void __fastcall Release(void);

Properties

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

Description

Releases the exclusive lock on the mutex.

Call Release from a thread that has finished using a shared resource.

The Release method frees the exclusive lock and allows one of the blocked threads to acquire the mutex.

See Also

Code Examples