Share via


IDkmContinueExecution.ContinueExecution(DkmThread) Method

Definition

This method is provided by base debug monitors to resume execution of the target process. This interface is always triggered by a request to resume the process by the Visual Studio Debugger UI/SDM. Concord components cannot resume the target process once a stopping event has been sent to the UI/SDM.

Base debug monitors implement this by calling from the request thread onto the stopping event thread. On the stopping event thread, the base debug monitor calls DkmThread.OnContinueExecution and then modifies the target process so that it will resume. After the target is running, the base debug monitor signals the request thread so that ContinueExecution will return.

public:
 void ContinueExecution(Microsoft::VisualStudio::Debugger::DkmThread ^ thread);
public void ContinueExecution (Microsoft.VisualStudio.Debugger.DkmThread thread);
abstract member ContinueExecution : Microsoft.VisualStudio.Debugger.DkmThread -> unit
Public Sub ContinueExecution (thread As DkmThread)

Parameters

thread
DkmThread

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

Applies to