mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-08 12:38:43 +08:00
9 lines
188 B
Rust
9 lines
188 B
Rust
//! # IRQ handling
|
|
//! This module defines IRQ handling functions. These functions should all be #[naked],
|
|
//! unsafe, extern, and end in `iretq`
|
|
|
|
#[naked]
|
|
pub unsafe extern fn irq() {
|
|
|
|
}
|