redox/kernel/arch/x86_64/irq.rs
2016-08-14 18:42:32 +02:00

11 lines
222 B
Rust

//! # IRQ handling
//!
//! This module defines IRQ handling functions. These functions should all be #[naked],
//! unsafe, extern, and end in `iretq`
/// Interupt Request handler.
#[naked]
pub unsafe extern fn irq() {
}