We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d29650 commit a8614eaCopy full SHA for a8614ea
Cargo.toml
@@ -16,7 +16,6 @@ exclude = [
16
]
17
18
[features]
19
-eventfd = []
20
execvpe = []
21
preadv_pwritev = []
22
signalfd = []
src/sys/mod.rs
@@ -9,8 +9,7 @@ pub mod epoll;
9
target_os = "dragonfly", target_os = "openbsd", target_os = "netbsd"))]
10
pub mod event;
11
12
-// TODO: switch from feature flags to conditional builds
13
-#[cfg(feature = "eventfd")]
+#[cfg(target_os = "linux")]
14
pub mod eventfd;
15
#[cfg(target_os = "linux")]
0 commit comments