redox/kernel/arch/x86_64/irq.rs

11 lines
222 B
Rust
Raw Normal View History

2016-08-14 02:21:46 +02:00
//! # IRQ handling
//!
2016-08-14 02:21:46 +02:00
//! This module defines IRQ handling functions. These functions should all be #[naked],
//! unsafe, extern, and end in `iretq`
/// Interupt Request handler.
2016-08-14 02:21:46 +02:00
#[naked]
pub unsafe extern fn irq() {
}