System.Classes.TThread.TSystemTimes

From RAD Studio API Documentation
Revision as of 22:06, 31 May 2012 by BuildBot (talk | contribs) (Created page with '{{#lst:API:System.Classes.TThread.TSystemTimes|api}} ==Description== {{#lsth:API:System.Classes.TThread.TSystemTimes|Description}}')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

    TSystemTimes = record
      IdleTime, UserTime, KernelTime, NiceTime: UInt64;
    end;

C++

struct DECLSPEC_DRECORD TSystemTimes
{
public:
    unsigned __int64 IdleTime;
    unsigned __int64 UserTime;
    unsigned __int64 KernelTime;
    unsigned __int64 NiceTime;
};

Properties

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

Description

Embarcadero Technologies does not currently have any additional information.