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

dispatch

Function dispatch 

Source
pub fn dispatch(irq: IrqNumber)
Expand description

Dispatch an interrupt to the registered handler.

Called by the architecture-specific interrupt entry point when an external interrupt is received. Looks up the handler for the given IRQ number and invokes it. If no handler is registered, the interrupt is silently ignored (spurious).