From 6d40d9b63b41188cc846918e19bbf2982b9305b9 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sun, 26 Mar 2023 10:26:25 +0200 Subject: 51602: Handle SIGIOT as an alias to SIGABRT if they are the same signal number --- Src/jobs.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Src/jobs.c') diff --git a/Src/jobs.c b/Src/jobs.c index 59ddd952e..15e2105eb 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -2646,6 +2646,11 @@ static const struct { { "IO", SIGIO }, #endif #endif +#if defined(SIGABRT) && defined(SIGIOT) +#if SIGABRT == SIGIOT + { "IOT", SIGIOT }, +#endif +#endif #if !defined(SIGERR) /* * If SIGERR is not defined by the operating system, use it -- cgit 1.4.1