FAULT_INFORMATION_ARM64_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef struct _FAULT_INFORMATION_ARM64_FLAGS {
  ULONG WriteNotRead : 1;
  ULONG InstructionNotData : 1;
  ULONG Privileged : 1;
  ULONG FaultAddressValid : 1;
  ULONG Reserved : 28;
} FAULT_INFORMATION_ARM64_FLAGS, *PFAULT_INFORMATION_ARM64_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_fault_information_arm64_flags)

_FAULT_INFORMATION_ARM64_FLAGS structure

Description

Defines fault information. These values are used by the FAULT_INFORMATION_ARM64 structure.

Members

WriteNotRead

Indicates if write permission was requested.

InstructionNotData

Indicates if execute permission was requested.

Privileged

Indicates if supervisor privilege was requested by the faulted request.

FaultAddressValid

Indicates if the fault address is valid.

Reserved

Reserved.

Remarks

See also