⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

IrqHandler

Type Alias IrqHandler 

Source
pub type IrqHandler = fn(IrqNumber);
Expand description

Type alias for IRQ handler functions.

An IRQ handler is a function that takes the IRQ number that triggered the interrupt. Handlers are registered via register_handler and invoked by dispatch when the corresponding interrupt fires.