PS_BREAK_POINT_INFO

A structure containing information about a breakpoint.

Syntax

typedef struct _PS_BREAK_POINT_INFO
{
 uint16_t Id;
 uint8_t OriginalByte;
 uint8_t Flags;
 uint16_t HitCount;
 uint16_t FilterCount;
 uint64_t PhysAddress;
} PS_BREAK_POINT_INFO, *PPS_BREAK_POINT_INFO;

Members

uint16_t Id

The breakpoint ID.

uint8_t OriginalByte

The original byte of the instruction on which the breakpoint was set.

uint8_t Flags

The breakpoint flags. No flags are currently defined.

uint16_t HitCount

The number of times the breakpoint has been hit since it was set.

uint16_t FilterCount

The number of filters associated with the breakpoint. Refer to the PsAddBreakPointFilter function for more information.

uint64_t PhysAddress

The physical address of the breakpoint.