std::unix::process adding few specific freebsd signals to be able to id. · model-checking/verify-rust-std@e000ecb (original) (raw)

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -1053,6 +1053,10 @@ fn signal_string(signal: i32) -> &'static str {
1053 1053 libc::SIGINFO => " (SIGINFO)",
1054 1054 #[cfg(target_os = "hurd")]
1055 1055 libc::SIGLOST => " (SIGLOST)",
1056 +#[cfg(target_os = "freebsd")]
1057 + libc::SIGTHR => " (SIGTHR)",
1058 +#[cfg(target_os = "freebsd")]
1059 + libc::SIGLIBRT => " (SIGLIBRT)",
1056 1060 _ => "",
1057 1061 }
1058 1062 }