System.SysUtils.TThreadInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TThreadInfo = record
    Next: PThreadInfo;
    ThreadID: TThreadID;
    Active: Integer;
    RecursionCount: Cardinal;
  end;

C++

struct DECLSPEC_DRECORD TThreadInfo
{
public:
    TThreadInfo *Next;
    unsigned ThreadID;
    int Active;
    unsigned RecursionCount;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

For internal use.

TThreadLocalCounter maintains a linked list of TThreadInfo.

See Also