DkmThread.OnContinueExecution Method

Definition

OnContinueExecution is called by the base debug monitor on the event thread. This method is called as part of the implementation of IDkmContinueExecution.ContinueExecution, which is what is used by the IDE to continue the target process. This method is used by the Dispatcher to either dispatch stopping events which could not be processed earlier, or to update the internal state of the DkmProcess object to indicate that the target process is now running. Before marking the process as running, the Dispatcher will send a Continue event.

A base debug monitor should expect to be reentrantly called while it is in this method.

public:
 bool OnContinueExecution();
public:
 bool OnContinueExecution();
bool OnContinueExecution();
public bool OnContinueExecution ();
member this.OnContinueExecution : unit -> bool
Public Function OnContinueExecution () As Boolean

Returns

[Out] True if the base debug monitor should resume execution of the target process.

Applies to