crossio_kqueue/
lib.rs

1//! BSD/macOS kqueue backend for crossio.
2
3#[cfg(any(
4    target_os = "macos",
5    target_os = "ios",
6    target_os = "freebsd",
7    target_os = "netbsd",
8    target_os = "openbsd",
9    target_os = "dragonfly",
10))]
11mod kqueue;
12
13#[cfg(any(
14    target_os = "macos",
15    target_os = "ios",
16    target_os = "freebsd",
17    target_os = "netbsd",
18    target_os = "openbsd",
19    target_os = "dragonfly",
20))]
21pub use kqueue::KqueueBackend;