IDebugThread2::Resume

Resumes execution of a thread.

HRESULT Resume ( 
   DWORD *pdwSuspendCount
);
int Resume ( 
   out uint pdwSuspendCount
);

Parameters

  • pdwSuspendCount
    [out] Returns the suspend count after the resume operation.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

Each call to this method decrements the suspend count until it reaches 0 at which time, execution is actually resumed. This suspend count is displayed in the Threads debug window.

For each call to this method, there must be a previous call to the IDebugThread2::Suspend method. The suspend count determines how many times the IDebugThread2::Suspend method has been called so far.

See Also

Reference

IDebugThread2

IDebugThread2::Suspend