Skip to main content

root_irql

Attribute Macro root_irql 

Source
#[root_irql]
Expand description

Marks an entry point function with a specific IRQL context.

ยงExample

use irql::{root_irql, Passive};

#[root_irql(Passive)]
fn driver_entry() {
    // Entry point at Passive IRQL
}