Jump to content

CPUUTIL: Difference between revisions

From EDM2
Anakor (talk | contribs)
New
 
Ak120 (talk | contribs)
mNo edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== CPUUTIL ==
Performance data returned by [[DosPerfSysCall]].
 
Performance data returned by DosPerfSysCall.


=== Type ===
=== Type ===
[[ULONG]] ulTimeLow
ULONG ulTimeHigh
ULONG ulIdleLow
ULONG ulIdleHigh
ULONG ulBusyLow
ULONG ulBusyHigh
ULONG ulIntrLow
ULONG ulIntrHigh


typedef struct _CPUUTIL {
==== C Declaration Method ====
[[OS2 API:DataType:ULONG|ULONG]] ulTimeLow;
typedef struct
[[OS2 API:DataType:ULONG|ULONG]] ulTimeHigh;
[[OS2 API:DataType:ULONG|ULONG]] ulIdleLow;
[[OS2 API:DataType:ULONG|ULONG]] ulIdleHigh;
[[OS2 API:DataType:ULONG|ULONG]] ulBusyLow;
[[OS2 API:DataType:ULONG|ULONG]] ulBusyHigh;
[[OS2 API:DataType:ULONG|ULONG]] ulIntrLow;
[[OS2 API:DataType:ULONG|ULONG]] ulIntrHigh;
} CPUUTIL;
   
   
=== Fields ===
=== Fields ===
 
;ulTimeLow:Low 32 bits of time stamp
ulTimeLow   Low 32 bits of time stamp
;ulTimeHigh:High 32 bits of time stamp
ulTimeHigh High 32 bits of time stamp
;ulIdleLow:Low 32 bits of idle time
ulIdleLow   Low 32 bits of idle time
;ulIdleHigh:High 32 bits of idle time
ulIdleHigh High 32 bits of idle time
;ulBusyLow:Low 32 bits of busy time
ulBusyLow   Low 32 bits of busy time
;ulBusyHigh:High 32 bits of busy time
ulBusyHigh High 32 bits of busy time
;ulIntrLow:Low 32 bits of interrupt time
ulIntrLow   Low 32 bits of interrupt time
;ulIntrHigh:High 32 bits of interrupt time
ulIntrHigh High 32 bits of interrupt time
 
[[Category:Data type]]

Latest revision as of 13:57, 24 May 2017

Performance data returned by DosPerfSysCall.

Type

ULONG ulTimeLow
ULONG ulTimeHigh
ULONG ulIdleLow
ULONG ulIdleHigh
ULONG ulBusyLow
ULONG ulBusyHigh
ULONG ulIntrLow
ULONG ulIntrHigh

C Declaration Method

typedef struct

Fields

ulTimeLow
Low 32 bits of time stamp
ulTimeHigh
High 32 bits of time stamp
ulIdleLow
Low 32 bits of idle time
ulIdleHigh
High 32 bits of idle time
ulBusyLow
Low 32 bits of busy time
ulBusyHigh
High 32 bits of busy time
ulIntrLow
Low 32 bits of interrupt time
ulIntrHigh
High 32 bits of interrupt time