| 1 | //! Platform-specific functionality. |
|---|---|
| 2 | |
| 3 | #[cfg(unix)] |
| 4 | pub 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 | ))] |
| 13 | pub mod kqueue; |
| 14 | |
| 15 | #[cfg(windows)] |
| 16 | pub mod windows; |
| 17 |
