#![cfg(target_arch ="x86_64")]//! Special x86_64 instructions.
pubmodinterrupts;pubmodport;pubmodrandom;pubmodsegmentation;pubmodtables;pubmodtlb;/// Halts the CPU until the next interrupt arrives.
#[inline(always)]pubfnhlt(){unsafe{asm!("hlt"::::"volatile");}}