Expand description
Kernel panic paths: kernel_panic for explicit kernel panics and the
required #[panic_handler] for language-level panics.
Authors: MarioS271
Staticsยง
- KERNEL_
PANIC_ ๐TRIGERRED - Prevents infinite panic re-entry on the
kernel_panicpath. - RUST_
PANIC_ ๐TRIGERRED - Prevents infinite panic re-entry on the
#[panic_handler]path.
Functionsยง
- kernel_
panic - Halt the kernel with a diagnostic message; re-entrant calls skip straight to the halt loop.
- panic ๐
- Rustโs required
#[panic_handler]for language-level panics.