diff --git a/Cargo.toml b/Cargo.toml index 74800f6ee6..dd63f99dd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_syscall" -version = "0.1.34" +version = "0.1.35" description = "A Rust library to access raw Redox system calls" license = "MIT" authors = ["Jeremy Soller "] diff --git a/src/flag.rs b/src/flag.rs index 230c98ab92..9a7cb5b662 100644 --- a/src/flag.rs +++ b/src/flag.rs @@ -103,5 +103,6 @@ pub const SA_RESTART: usize = 0x10000000; pub const SA_NODEFER: usize = 0x40000000; pub const SA_RESETHAND: usize = 0x80000000; -pub const WNOHANG: usize = 1; -pub const WUNTRACED: usize = 2; +pub const WNOHANG: usize = 0x01; +pub const WUNTRACED: usize = 0x02; +pub const WCONTINUED: usize = 0x08;