IDkmInstructionStepper Interface

Definition

Interface implemented by base debug monitors to provide instruction-level stepping primitives. This interface is consumed by runtime debug monitors to implement user-level execution control.

Implementations of this interface may restrict when they are called using a filter defined in their component configuration. The following properties may be used: BaseDebugMonitorId, EngineId, SourceId.

public interface class IDkmInstructionStepper
public interface class IDkmInstructionStepper
__interface IDkmInstructionStepper
public interface IDkmInstructionStepper
type IDkmInstructionStepper = interface
Public Interface IDkmInstructionStepper

Methods

ClearSingleStep(DkmSingleStepRequest)

Disable single step on a thread.

EnableSingleStep(DkmSingleStepRequest)

Enable single step on a thread. When then single step completes, the SingleStepComplete event should be sent. The single step should reset after completion. Implementers should send one single step complete event per instance of DkmSingleStepRequest they receive. Callers must make a new request to single-step after this DkmSingleStepRequest is complete.

Applies to