summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-08-25 22:20:59 -0700
committerGitHub <noreply@github.com>2016-08-25 22:20:59 -0700
commit85ac087c764c2300bcb80cc4b279d87f2ef0f055 (patch)
tree606d0b82361c3b2054ed7590f018029c902f2bd2
parentb117b261e9787213a530e69a0b9f82da04e4b91f (diff)
parent681b343541f00002188c8bcf7548e5f2b923f2bf (diff)
downloadrust-libc-85ac087c764c2300bcb80cc4b279d87f2ef0f055.tar.gz
Merge pull request #364 from nbaksalyar/master
Add missing consts on Solaris
-rw-r--r--src/unix/solaris/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unix/solaris/mod.rs b/src/unix/solaris/mod.rs
index c44ef499b8..31f67b78e6 100644
--- a/src/unix/solaris/mod.rs
+++ b/src/unix/solaris/mod.rs
@@ -432,6 +432,7 @@ pub const FIONBIO: ::c_int = 0x8004667e;
pub const SIGCHLD: ::c_int = 18;
pub const SIGBUS: ::c_int = 10;
+pub const SIGINFO: ::c_int = 41;
pub const SIG_BLOCK: ::c_int = 1;
pub const SIG_UNBLOCK: ::c_int = 2;
pub const SIG_SETMASK: ::c_int = 3;
@@ -541,6 +542,7 @@ pub const SIGXCPU: ::c_int = 30;
pub const SIGXFSZ: ::c_int = 31;
pub const WNOHANG: ::c_int = 0x40;
+pub const WUNTRACED: ::c_int = 0x04;
pub const PROT_NONE: ::c_int = 0;
pub const PROT_READ: ::c_int = 1;