signal: remove duplicate definition of SIGIOT

This commit is contained in:
Johannes Altmanninger
2026-05-23 10:31:07 +08:00
parent 0f81bb0748
commit 19e0c8b6b9

View File

@@ -414,9 +414,6 @@ macro_rules! signal_entry {
))]
signal_entry!(SIGSTKFLT, SIGSTKFLT_DESC),
#[cfg(target_os = "linux")]
signal_entry!(SIGIOT, SIGIOT_DESC),
#[cfg(target_os = "linux")]
signal_entry!(SIGPWR, SIGPWR_DESC),
@@ -434,9 +431,6 @@ macro_rules! signal_entry {
#[allow(dead_code)]
SIGSTKFLT_DESC "Stack fault"
#[allow(dead_code)]
SIGIOT_DESC "Abort (Alias for SIGABRT)"
#[allow(dead_code)]
SIGPWR_DESC "Power failure"
);