summaryrefslogtreecommitdiff
path: root/src/sys/wait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/wait.rs')
-rw-r--r--src/sys/wait.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/wait.rs b/src/sys/wait.rs
index 7e21339d..bd3e6187 100644
--- a/src/sys/wait.rs
+++ b/src/sys/wait.rs
@@ -14,7 +14,7 @@ mod ffi {
#[cfg(not(any(target_os = "linux",
target_os = "android")))]
bitflags!(
- flags WaitPidFlag: c_int {
+ pub flags WaitPidFlag: c_int {
const WNOHANG = libc::WNOHANG,
const WUNTRACED = libc::WUNTRACED,
}
@@ -23,7 +23,7 @@ bitflags!(
#[cfg(any(target_os = "linux",
target_os = "android"))]
bitflags!(
- flags WaitPidFlag: c_int {
+ pub flags WaitPidFlag: c_int {
const WNOHANG = libc::WNOHANG,
const WUNTRACED = libc::WUNTRACED,
const WEXITED = libc::WEXITED,