Skip to content

Commit

Permalink
Extend definitions in signal_details.rs for SIGINFO
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-yuji committed May 14, 2022
1 parent f6547d8 commit f3102f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/low_level/signal_details.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ const DETAILS: &[Details] = &[
s!(SIGHUP, Term),
s!(SIGILL, Term),
s!(SIGINT, Term),
#[cfg(any(
target_os="freebsd", target_os="dragonfly", target_os="netbsd",
target_os="openbsd", target_os="macos"))]
s!(SIGINFO, Ignore),
#[cfg(not(target_os = "haiku"))]
s!(SIGIO, Ignore),
// Can't override anyway, but...
Expand Down

0 comments on commit f3102f3

Please sign in to comment.