compio-driver 0.12.0

Low-level driver for compio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cfg_select! {
    fusion => {
        mod iour;
        #[path = "fallback.rs"]
        mod poll;
        mod fusion;
        pub use fusion::*;
    }
    io_uring => {
        mod iour;
        pub use iour::*;
    }
    _ => {
        mod fallback;
        pub use fallback::*;
    }
}