IDkmThreadSuspension.GetDebuggerSuspensionCount(DkmThread) Method

Definition

Return the total number of suspensions caused by the debugger (i.e. calls to DkmThread::Suspend without a call to DkmThread::Resume). This excludes any suspensions external to the debugger.

public:
 System::UInt32 GetDebuggerSuspensionCount(Microsoft::VisualStudio::Debugger::DkmThread ^ thread);
public uint GetDebuggerSuspensionCount (Microsoft.VisualStudio.Debugger.DkmThread thread);
abstract member GetDebuggerSuspensionCount : Microsoft.VisualStudio.Debugger.DkmThread -> uint32
Public Function GetDebuggerSuspensionCount (thread As DkmThread) As UInteger

Parameters

thread
DkmThread

[In] DkmThread represents a thread running in the target process.

Returns

[Out] The total number of suspensions caused by the debugger (i.e. calls to DkmThread::Suspend without a call to DkmThread::Resume). This excludes any suspensions external to the debugger.

Applies to