rustubs/machine/interrupt.rs
1//! a "machine" level interrupt controlling interface: so that the kernel could
2//! enable and disable the interrupt without differentiate the architectures
3//! currently not in use because we are not so complicated yet. Perhaps this
4//! helper will deem unnecessary in the future ...
5#[cfg(target_arch = "x86_64")]
6pub use crate::arch::x86_64::interrupt::*;