io-uring 0.7.11

The low-level `io_uring` userspace interface for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cfg_if::cfg_if! {
    if #[cfg(target_arch = "x86_64")] {
        include!("sys_x86_64.rs");
    } else if #[cfg(target_arch = "aarch64")] {
        include!("sys_aarch64.rs");
    } else if #[cfg(target_arch = "riscv64")] {
        include!("sys_riscv64.rs");
    } else if #[cfg(target_arch = "powerpc64")] {
        include!("sys_powerpc64.rs");
    } else if #[cfg(target_arch = "loongarch64")] {
        include!("sys_loongarch64.rs");
    } else {
        include!("sys_x86_64.rs");
    }
}