System.SyncObjs.TLightweightSemaphore.BlockedCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BlockedCount: Integer read FBlockedCount;

C++

__property int BlockedCount = {read=FBlockedCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.SyncObjs.pas
System.SyncObjs.hpp
System.SyncObjs TLightweightSemaphore

Description

Number of times threads are blocked when calling WaitFor.

You can make performance statistics if you count the number of calls to WaitFor and use BlockedCount.

See Also