Skip to content

Commit 08a2abb

Browse files
authored
Merge pull request #330 from danlrobertson/more_signals
Add SIGCHLD and other signals
2 parents 864910a + 88cc2de commit 08a2abb

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/unix/bsd/freebsdlike/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ pub const SIGINT: ::c_int = 2;
316316
pub const SIGQUIT: ::c_int = 3;
317317
pub const SIGILL: ::c_int = 4;
318318
pub const SIGABRT: ::c_int = 6;
319+
pub const SIGEMT: ::c_int = 7;
319320
pub const SIGFPE: ::c_int = 8;
320321
pub const SIGKILL: ::c_int = 9;
321322
pub const SIGSEGV: ::c_int = 11;

src/unix/bsd/openbsdlike/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ pub const SIGINT : ::c_int = 2;
181181
pub const SIGQUIT : ::c_int = 3;
182182
pub const SIGILL : ::c_int = 4;
183183
pub const SIGABRT : ::c_int = 6;
184+
pub const SIGEMT: ::c_int = 7;
184185
pub const SIGFPE : ::c_int = 8;
185186
pub const SIGKILL : ::c_int = 9;
186187
pub const SIGSEGV : ::c_int = 11;

src/unix/solaris/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@ pub const SIGINT: ::c_int = 2;
506506
pub const SIGQUIT: ::c_int = 3;
507507
pub const SIGILL: ::c_int = 4;
508508
pub const SIGABRT: ::c_int = 6;
509+
pub const SIGEMT: ::c_int = 7;
509510
pub const SIGFPE: ::c_int = 8;
510511
pub const SIGKILL: ::c_int = 9;
511512
pub const SIGSEGV: ::c_int = 11;

0 commit comments

Comments
 (0)