We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f08f66 + 578d08f commit 6358417Copy full SHA for 6358417
std/src/sys/unix/process/process_unix.rs
@@ -746,6 +746,8 @@ fn signal_string(signal: i32) -> &'static str {
746
libc::SIGWINCH => " (SIGWINCH)",
747
#[cfg(not(target_os = "haiku"))]
748
libc::SIGIO => " (SIGIO)",
749
+ #[cfg(target_os = "haiku")]
750
+ libc::SIGPOLL => " (SIGPOLL)",
751
libc::SIGSYS => " (SIGSYS)",
752
// For information on Linux signals, run `man 7 signal`
753
#[cfg(all(
0 commit comments