1//! Platform-specific functionality.
2
3#[cfg(unix)]
4pub mod unix;
5
6#[cfg(any(
7 target_vendor = "apple",
8 target_os = "freebsd",
9 target_os = "netbsd",
10 target_os = "openbsd",
11 target_os = "dragonfly",
12))]
13pub mod kqueue;
14
15#[cfg(windows)]
16pub mod windows;
17