Skip to content

Commit 85ac087

Browse files
authored
Merge pull request #364 from nbaksalyar/master
Add missing consts on Solaris
2 parents b117b26 + 681b343 commit 85ac087

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/unix/solaris/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ pub const FIONBIO: ::c_int = 0x8004667e;
432432

433433
pub const SIGCHLD: ::c_int = 18;
434434
pub const SIGBUS: ::c_int = 10;
435+
pub const SIGINFO: ::c_int = 41;
435436
pub const SIG_BLOCK: ::c_int = 1;
436437
pub const SIG_UNBLOCK: ::c_int = 2;
437438
pub const SIG_SETMASK: ::c_int = 3;
@@ -541,6 +542,7 @@ pub const SIGXCPU: ::c_int = 30;
541542
pub const SIGXFSZ: ::c_int = 31;
542543

543544
pub const WNOHANG: ::c_int = 0x40;
545+
pub const WUNTRACED: ::c_int = 0x04;
544546

545547
pub const PROT_NONE: ::c_int = 0;
546548
pub const PROT_READ: ::c_int = 1;

0 commit comments

Comments
 (0)