System.MonitorPulseAll
Delphi
procedure MonitorPulseAll(const AObject: TObject);
C++
extern DELPHI_PACKAGE void __fastcall MonitorPulseAll(TObject* const AObject);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.pas System.hpp |
System | System |
Description
Signals all threads in the waiting queue that each one of them will be able to lock the specified object as soon as the calling thread releases it.
MonitorPulseAll notifies all threads in the waiting queue that they can move to the ready queue. As soon as the calling thread releases the lock on AObject, the first thread in the ready queue locks it.