IDkmProcessQueryOperation.GetRunningTime(DkmProcess) Method

Definition

Obtains the number of clock cycles that the debuggee has been running since ResetRunningTime() was last called.

public:
 System::UInt64 GetRunningTime(Microsoft::VisualStudio::Debugger::DkmProcess ^ process);
public ulong GetRunningTime (Microsoft.VisualStudio.Debugger.DkmProcess process);
abstract member GetRunningTime : Microsoft.VisualStudio.Debugger.DkmProcess -> uint64
Public Function GetRunningTime (process As DkmProcess) As ULong

Parameters

process
DkmProcess

[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.

Returns

[Out] The time the debuggee has been running.

Applies to