We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d46b1e commit ae9e66bCopy full SHA for ae9e66b
library/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