syscall/io/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! I/O functions

pub use self::{io::*, mmio::*};

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use self::pio::*;

mod io;
mod mmio;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod pio;