Skip to content

Commit

Permalink
Merge pull request rust-lang#364 from nbaksalyar/master
Browse files Browse the repository at this point in the history
Add missing consts on Solaris
  • Loading branch information
alexcrichton authored Aug 26, 2016
2 parents b117b26 + 681b343 commit 85ac087
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/unix/solaris/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 85ac087

Please sign in to comment.