mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-18 06:53:35 -04:00
53907: re-apply 6d40d9b (Handle SIGIOT as an alias to SIGABRT)
It was mistakenly reverted by c006d76.
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user