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.
1 parent ba48b39 commit f1f31c9Copy full SHA for f1f31c9
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