diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Src/jobs.c | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2025-09-03 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * 53907: Src/jobs.c: re-apply the patch in 51602 (Handle SIGIOT + as an alias to SIGABRT) that was mistakenly reverted by 51604 + 2025-09-01 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> * 53898: Completion/Unix/Command/_date, diff --git a/Src/jobs.c b/Src/jobs.c index ad14f6312..2d0465a22 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -2754,6 +2754,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 |
