KzRaiseIrql - NtDoc

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

KIRQL KzRaiseIrql(
  [in] KIRQL NewIrql
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-kzraiseirql)

KzRaiseIrql function

Description

Raises the hardware priority to the specified IRQL value, thereby masking off interrupts of equivalent or lower IRQL on the current processor. For information about IRQLs, see Managing Hardware Priorities.

Parameters

NewIrql [in]

Specifies the new IRQL to which the hardware priority is to be raised.

Return value

The original (unraised) IRQL value to be used in a subsequent call to KzLowerIrql.

Remarks

This function is same as the KeRaiseIrql function.

See also