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 39fe991 + cf3966d commit d24d937Copy full SHA for d24d937
1 file changed
library/std/src/sys/pal/unix/process/process_unix.rs
@@ -1053,6 +1053,10 @@ fn signal_string(signal: i32) -> &'static str {
1053
libc::SIGINFO => " (SIGINFO)",
1054
#[cfg(target_os = "hurd")]
1055
libc::SIGLOST => " (SIGLOST)",
1056
+ #[cfg(target_os = "freebsd")]
1057
+ libc::SIGTHR => " (SIGTHR)",
1058
1059
+ libc::SIGLIBRT => " (SIGLIBRT)",
1060
_ => "",
1061
}
1062
0 commit comments