rustix/backend/libc/event/
mod.rs

1pub(crate) mod poll_fd;
2#[cfg(not(windows))]
3pub(crate) mod types;
4
5#[cfg_attr(windows, path = "windows_syscalls.rs")]
6pub(crate) mod syscalls;
7
8#[cfg(any(linux_kernel, target_os = "illumos", target_os = "redox"))]
9pub mod epoll;