Add WUNTRACED

This commit is contained in:
Jeremy Soller
2018-01-03 21:50:59 -07:00
parent 414b8e0be0
commit 88a0512d71
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "redox_syscall"
version = "0.1.33"
version = "0.1.34"
description = "A Rust library to access raw Redox system calls"
license = "MIT"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]

View File

@@ -104,3 +104,4 @@ pub const SA_NODEFER: usize = 0x40000000;
pub const SA_RESETHAND: usize = 0x80000000;
pub const WNOHANG: usize = 1;
pub const WUNTRACED: usize = 2;