xous 0.9.70

System call interface for Xous
Documentation
#[cfg(all(any(target_os = "none", target_os = "xous"), target_arch = "arm"))]
mod arm;
#[cfg(all(any(target_os = "none", target_os = "xous"), target_arch = "arm"))]
pub use arm::*;

#[cfg(all(any(target_os = "xous", target_os = "none"), target_arch = "riscv32"))]
pub mod riscv;
#[cfg(all(any(target_os = "xous", target_os = "none"), target_arch = "riscv32"))]
pub use riscv::*;

#[cfg(all(
    not(feature = "processes-as-threads"),
    not(any(target_os = "xous", target_os = "none")),
    not(target_arch = "arm"),
))]
pub mod hosted;
#[cfg(all(
    not(feature = "processes-as-threads"),
    not(any(target_os = "xous", target_os = "none")),
    not(target_arch = "arm"),
))]
pub use hosted::*;

#[cfg(feature = "processes-as-threads")]
pub mod test;
#[cfg(feature = "processes-as-threads")]
pub use test::*;