Add WCONTINUED

This commit is contained in:
Jeremy Soller
2018-01-03 22:21:26 -07:00
parent 88a0512d71
commit 8f01290058
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -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 <jackpot51@gmail.com>"]
+3 -2
View File
@@ -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;