compio-driver 0.11.4

Low-level driver for compio
Documentation
1
2
3
4
5
6
7
8
9
10
11
cfg_if::cfg_if! {
    if #[cfg(feature = "iocp-wait-packet")] {
        mod packet;
        use packet as sys;
    } else {
        mod thread_pool;
        use thread_pool as sys;
    }
}

pub use sys::*;