mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-04 11:39:54 +08:00
Remove SIGUNUSED
Some checks are pending
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
Some checks are pending
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
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
|
@ -407,10 +407,6 @@ const SIGNAL_TABLE : &[LookupEntry] = &[
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
LookupEntry::new(libc::SIGIOT, L!("SIGIOT"), L!("Abort (Alias for SIGABRT)")),
|
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")]
|
#[cfg(target_os = "linux")]
|
||||||
LookupEntry::new(libc::SIGPWR, L!("SIGPWR"), L!("Power failure")),
|
LookupEntry::new(libc::SIGPWR, L!("SIGPWR"), L!("Power failure")),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user