Skip to content

Commit a0725ad

Browse files
committed
Add SIGEMT (for apple) and SIGINFO (for bsd).
1 parent 22bb4e4 commit a0725ad

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/unix/bsd/apple/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ pub const SIGINT: ::c_int = 2;
438438
pub const SIGQUIT: ::c_int = 3;
439439
pub const SIGILL: ::c_int = 4;
440440
pub const SIGABRT: ::c_int = 6;
441+
pub const SIGEMT: ::c_int = 7;
441442
pub const SIGFPE: ::c_int = 8;
442443
pub const SIGKILL: ::c_int = 9;
443444
pub const SIGSEGV: ::c_int = 11;

src/unix/bsd/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ pub const SIGXFSZ: ::c_int = 25;
163163
pub const SIGVTALRM: ::c_int = 26;
164164
pub const SIGPROF: ::c_int = 27;
165165
pub const SIGWINCH: ::c_int = 28;
166+
pub const SIGINFO: ::c_int = 29;
166167

167168
pub const SIG_SETMASK: ::c_int = 3;
168169
pub const SIG_BLOCK: ::c_int = 0x1;

0 commit comments

Comments
 (0)