From 8f012900589854cd54ac0a6edb9a3f2b0e017669 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 3 Jan 2018 22:21:26 -0700 Subject: [PATCH] Add WCONTINUED --- Cargo.toml | 2 +- src/flag.rs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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;