compio-driver 0.6.1

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")] {
        #[path = "packet.rs"]
        mod sys;
    } else {
        #[path = "thread_pool.rs"]
        mod sys;
    }
}

pub use sys::*;