mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-24 11:53:09 +00:00
Remove SIGUNUSED
It is, as the name implies, unused - it became SIGSYS, which we already check. Since it is entirely undefined on some architectures it causes a build failure there, see discussion in #10633
This commit is contained in:
parent
0153579a4c
commit
e2596d13cd
1 changed files with 0 additions and 4 deletions
|
@ -407,10 +407,6 @@ const SIGNAL_TABLE : &[LookupEntry] = &[
|
|||
#[cfg(target_os = "linux")]
|
||||
LookupEntry::new(libc::SIGIOT, L!("SIGIOT"), L!("Abort (Alias for SIGABRT)")),
|
||||
|
||||
#[cfg(target_os = "linux")]
|
||||
#[allow(deprecated)]
|
||||
LookupEntry::new(libc::SIGUNUSED, L!("SIGUNUSED"), L!("Unused signal")),
|
||||
|
||||
#[cfg(target_os = "linux")]
|
||||
LookupEntry::new(libc::SIGPWR, L!("SIGPWR"), L!("Power failure")),
|
||||
|
||||
|
|
Loading…
Reference in a new issue