PEP_UNMASKED_INTERRUPT_FLAGS - NtDoc

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

typedef union _PEP_UNMASKED_INTERRUPT_FLAGS {
  struct {
    USHORT SecondaryInterrupt : 1;
    USHORT Reserved : 15;
  };
  USHORT AsUSHORT;
} PEP_UNMASKED_INTERRUPT_FLAGS, *PPEP_UNMASKED_INTERRUPT_FLAGS;
View the official Windows Driver Kit DDI reference
// pepfx.h

typedef union _PEP_UNMASKED_INTERRUPT_FLAGS {
  struct {
    USHORT SecondaryInterrupt : 1;
    USHORT Reserved : 15;
  };
  USHORT AsUSHORT;
} PEP_UNMASKED_INTERRUPT_FLAGS, *PPEP_UNMASKED_INTERRUPT_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-pep_x-_pep_unmasked_interrupt_flags)

_PEP_UNMASKED_INTERRUPT_FLAGS union (pep_x.h)

Description

The PEP_UNMASKED_INTERRUPT_FLAGS union indicates whether an unmasked interrupt source is a primary interrupt or a secondary interrupt.

Members

SecondaryInterrupt

Whether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.

Reserved

Reserved for future use.

AsUSHORT

A USHORT value that contains all of the unmasked interrupt flags.

Whether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.

Remarks

The unnamed struct contains the bit fields for the individual unmasked interrupt flags.

The Flags member of the ns-pep_x-_pep_work_information.md structure is a PEP_UNMASKED_INTERRUPT_FLAGS union.

See also


Windows Driver Kit DDI reference (ns-pepfx-_pep_unmasked_interrupt_flags)

_PEP_UNMASKED_INTERRUPT_FLAGS structure (pepfx.h)

Description

The PEP_UNMASKED_INTERRUPT_FLAGS union indicates whether an unmasked interrupt source is a primary interrupt or a secondary interrupt.

Members

SecondaryInterrupt

Whether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.

Reserved

Reserved for future use. Set to zero.

AsUSHORT

A USHORT value that contains all of the unmasked interrupt flags.

Remarks

The Flags member of the PEP_UNMASKED_INTERRUPT_INFORMATION structure is a PEP_UNMASKED_INTERRUPT_FLAGS union.

The unnamed structure contains the bit fields for the individual unmasked interrupt flags.

See also