diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2025-09-03 10:34:50 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2025-09-03 10:34:50 +0900 |
| commit | 3cd363c8804a4569e601f4486a0001b1de14811f (patch) | |
| tree | a369beabb0ed08598bdd074f803946b93c3395fb | |
| parent | 53898: update _pmap, _date, _pgrep, _sysctl (diff) | |
| download | zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar.gz zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar.bz2 zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar.lz zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar.xz zsh-3cd363c8804a4569e601f4486a0001b1de14811f.tar.zst zsh-3cd363c8804a4569e601f4486a0001b1de14811f.zip | |
53907: re-apply 6d40d9b (Handle SIGIOT as an alias to SIGABRT)
It was mistakenly reverted by c006d76.
| -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 |
