userspace/target/
operating_system.rs

1#[macro_use]
2pub mod macros;
3pub mod traits;
4
5#[cfg(target_os = "linux")]
6pub mod linux;
7#[cfg(target_os = "linux")]
8pub use linux::*;
9
10#[cfg(not(target_os = "linux"))]
11pub mod linux;
12#[cfg(not(target_os = "linux"))]
13pub use linux::*;
14
15pub struct Os;