summaryrefslogtreecommitdiff
path: root/src/sys/mod.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-09-04 18:25:41 +0000
committerGitHub <noreply@github.com>2021-09-04 18:25:41 +0000
commit5465167a7b56d8caeb4a44002eb108fadbfd49cb (patch)
tree3693b52af91034b1762205926ba8b00f06d4b685 /src/sys/mod.rs
parent39c63662ed910763b0ccc02473121f12517d1f42 (diff)
parenta757be75fcdda80d9c441db35fdfedb402714223 (diff)
downloadnix-5465167a7b56d8caeb4a44002eb108fadbfd49cb.zip
Merge #1511
1511: Document more things r=asomers a=asomers Also, test rustdoc in CI, and demote missing_docs from a deny to a warning (but still deny it in CI). Co-authored-by: Alan Somers <asomers@gmail.com>
Diffstat (limited to 'src/sys/mod.rs')
-rw-r--r--src/sys/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/sys/mod.rs b/src/sys/mod.rs
index 2f356801..5d9821a7 100644
--- a/src/sys/mod.rs
+++ b/src/sys/mod.rs
@@ -49,7 +49,6 @@ pub mod mman;
#[allow(missing_docs)]
pub mod personality;
-#[allow(missing_docs)]
pub mod pthread;
#[cfg(any(target_os = "android",
@@ -70,11 +69,9 @@ pub mod quota;
pub mod reboot;
#[cfg(not(any(target_os = "redox", target_os = "fuchsia", target_os = "illumos")))]
-#[allow(missing_docs)]
pub mod resource;
#[cfg(not(target_os = "redox"))]
-#[allow(missing_docs)]
pub mod select;
#[cfg(any(target_os = "android",
@@ -82,10 +79,8 @@ pub mod select;
target_os = "ios",
target_os = "linux",
target_os = "macos"))]
-#[allow(missing_docs)]
pub mod sendfile;
-#[allow(missing_docs)]
pub mod signal;
#[cfg(any(target_os = "android", target_os = "linux"))]
@@ -107,7 +102,6 @@ pub mod stat;
target_os = "macos",
target_os = "openbsd"
))]
-#[allow(missing_docs)]
pub mod statfs;
pub mod statvfs;
@@ -122,13 +116,10 @@ pub mod termios;
#[allow(missing_docs)]
pub mod time;
-#[allow(missing_docs)]
pub mod uio;
-#[allow(missing_docs)]
pub mod utsname;
-#[allow(missing_docs)]
pub mod wait;
#[cfg(any(target_os = "android", target_os = "linux"))]