redox/src/arch/x86_64/irq.rs
2016-08-13 18:21:46 -06:00

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() {
}