redox/arch/x86_64/src/interrupt.rs
2016-08-14 11:45:47 -06:00

20 lines
377 B
Rust

//! Interrupt instructions
/// Clear interrupts
#[inline(always)]
pub unsafe fn clear_interrupts() {
asm!("cli" : : : : "intel", "volatile");
}
/// Set interrupts
#[inline(always)]
pub unsafe fn set_interrupts() {
asm!("sti" : : : : "intel", "volatile");
}
/// Halt instruction
#[inline(always)]
pub unsafe fn halt() {
asm!("hlt" : : : : "intel", "volatile");
}