PsQueryTotalCycleTimeProcess function (wdm.h)
The PsQueryTotalCycleTimeProcess routine returns the accumulated cycle time for the specified process.
ULONG64 PsQueryTotalCycleTimeProcess(
[in, out] PEPROCESS Process,
[out] PULONG64 CycleTimeStamp
);
[in, out] Process
A pointer to an EPROCESS structure that serves as the kernel object for the process.
[out] CycleTimeStamp
A pointer to a ULONG64 variable to which the routine writes the current cycle counter value for the process.
PsQueryTotalCycleTimeProcess returns the accumulated cycle time for the specified process.
This routine uses the time stamp counter to get the number of processor clock cycles used by the specified process.
Requirement | Value |
---|---|
Minimum supported client | Available in Windows 8 and later versions of Windows. |
Target Platform | Universal |
Header | wdm.h |
Library | Ntoskrnl.lib |
IRQL | PASSIVE_LEVEL |