sel4_sys/syscalls/helpers/arch/
mod.rsuse core::ffi::c_int;
use sel4_config::sel4_cfg_if;
use crate::seL4_Word;
sel4_cfg_if! {
if #[sel4_cfg(ARCH_AARCH64)] {
#[path = "aarch64.rs"]
mod imp;
} else if #[sel4_cfg(ARCH_AARCH32)] {
#[path = "aarch32.rs"]
mod imp;
} else if #[sel4_cfg(any(ARCH_RISCV64, ARCH_RISCV32))] {
#[path = "riscv.rs"]
mod imp;
} else if #[sel4_cfg(ARCH_X86_64)] {
#[path = "x86_64.rs"]
mod imp;
}
}
#[cfg(any())]
mod aarch32;
#[cfg(any())]
mod aarch64;
#[cfg(any())]
mod riscv;
#[cfg(any())]
mod x86_64;
pub use imp::*;
fn sys_id_to_word(sys_id: c_int) -> seL4_Word {
sys_id as seL4_Word
}