aboutsummaryrefslogtreecommitdiff
path: root/src/sys/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/mod.rs')
-rw-r--r--src/sys/mod.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/sys/mod.rs b/src/sys/mod.rs
index 2065059..bf047b3 100644
--- a/src/sys/mod.rs
+++ b/src/sys/mod.rs
@@ -25,7 +25,6 @@ feature! {
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd"))]
- #[allow(missing_docs)]
pub mod event;
#[cfg(any(target_os = "android", target_os = "linux"))]
@@ -68,6 +67,12 @@ feature! {
pub mod personality;
}
+#[cfg(target_os = "linux")]
+feature! {
+ #![feature = "process"]
+ pub mod prctl;
+}
+
feature! {
#![feature = "pthread"]
pub mod pthread;
@@ -111,7 +116,6 @@ feature! {
pub mod resource;
}
-#[cfg(not(target_os = "redox"))]
feature! {
#![feature = "poll"]
pub mod select;
@@ -139,7 +143,6 @@ feature! {
pub mod signalfd;
}
-#[cfg(not(target_os = "redox"))]
feature! {
#![feature = "socket"]
#[allow(missing_docs)]