diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-02-16 16:18:44 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-02-16 16:18:44 +0100 |
commit | e47d55c3bec4335033d4954198c25b778ff30a86 (patch) | |
tree | 6fa02dfbf4f1ba962749c2675448fe0fbc05c08b /src/sys/wait.rs | |
parent | 7a91a816c5f8b8ffbf9bc5798f92ecbb8bbd7713 (diff) | |
download | nix-e47d55c3bec4335033d4954198c25b778ff30a86.zip |
Update bitflags to 0.7
Diffstat (limited to 'src/sys/wait.rs')
-rw-r--r-- | src/sys/wait.rs | 4 |
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, |