Sha256: 2e84e47c029f96eaf8870030a2f57ec68416035cd99fe7c05601ede40057fe78
Contents?: true
Size: 836 Bytes
Versions: 3
Compression:
Stored size: 836 Bytes
Contents
//! Event operations. #[cfg(any(linux_kernel, target_os = "illumos", target_os = "redox"))] pub mod epoll; #[cfg(any( linux_kernel, target_os = "freebsd", target_os = "illumos", target_os = "espidf" ))] mod eventfd; #[cfg(all(feature = "alloc", bsd))] pub mod kqueue; #[cfg(not(any(windows, target_os = "redox", target_os = "wasi")))] mod pause; mod poll; #[cfg(solarish)] pub mod port; #[cfg(any(bsd, linux_kernel, windows, target_os = "wasi"))] mod select; #[cfg(any( linux_kernel, target_os = "freebsd", target_os = "illumos", target_os = "espidf" ))] pub use eventfd::{eventfd, EventfdFlags}; #[cfg(not(any(windows, target_os = "redox", target_os = "wasi")))] pub use pause::*; pub use poll::{poll, PollFd, PollFlags}; #[cfg(any(bsd, linux_kernel, windows, target_os = "wasi"))] pub use select::*;
Version data entries
3 entries across 3 versions & 1 rubygems