From 88a0512d71c4cfaaa8a9102159416d7f1d09b68a Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 3 Jan 2018 21:50:59 -0700 Subject: [PATCH] Add WUNTRACED --- Cargo.toml | 2 +- src/flag.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b8d642b..74800f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] diff --git a/src/flag.rs b/src/flag.rs index 6cb22bc..230c98a 100644 --- a/src/flag.rs +++ b/src/flag.rs @@ -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;