Add WCONTINUED
This commit is contained in:
+1
-1
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user