DkmDataAccessStopMask Enum

Definition

Mask of reasons why the data breakpoint should fire. For example, if 'Write' is set, then the breakpoint will fire when the memory location is written.

This enumeration supports a bitwise combination of its member values.

public enum class DkmDataAccessStopMask
public enum class DkmDataAccessStopMask
enum DkmDataAccessStopMask
[System.Flags]
public enum DkmDataAccessStopMask
[<System.Flags>]
type DkmDataAccessStopMask = 
Public Enum DkmDataAccessStopMask
Inheritance
DkmDataAccessStopMask
Attributes

Fields

Execute 4

Stop when the CPU tries to execute an instruction at the specified address.

ReadWrite 2

Stop when the CPU reads or writes to the specified address.

Write 1

Stop when the CPU writes to the specified address.

Applies to