System.Classes.TThread.TSystemTimes

From RAD Studio API Documentation
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.