zsh-workers
 help / color / mirror / code / Atom feed
* SIGABRT/SIGIOT confusion under Linux
@ 2023-03-25 20:40 Nate Eldredge
  2023-03-26  8:28 ` PATCH: Handle SIGIOT as an alias to SIGABRT if they are the same signal number Mikael Magnusson
  0 siblings, 1 reply; 2+ messages in thread
From: Nate Eldredge @ 2023-03-25 20:40 UTC (permalink / raw)
  To: zsh-workers

On Linux, the obscure SIGIOT signal, which hasn't really been meaningful 
on any machine since the PDP-11, is an alias for the common SIGABRT 
(signal 6).  The system strsignal() function maps signal 6 to the expected 
description "Aborted".  However, since zsh does its own translation, and 
since the SIGABRT precedes SIGIOT in Linux's <signal.h>, the latter 
overwrites the former in zsh's signal string tables.  See 
Src/signames2.awk.

This has (at least) two unfortunate results:

1. When a command aborts by calling `abort()`, which raises SIGABRT, zsh 
emits the message "zsh: IOT instruction (core dumped)" which will surely 
mystify most users.

2. The `kill` builtin doesn't accept `-ABRT`.  If you wanted to send the 
abort signal to a process, you would have to know to do `kill -IOT pid` 
instead, or `kill -6 pid` if you have the numbers memorized.

Tested with zsh 5.9 as distributed with Ubuntu 22.10 on x86-64, but the 
latest zsh source in git seems to not have changed.

-- 
Nate Eldredge
nate@thatsmathematics.com



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-26  8:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-25 20:40 SIGABRT/SIGIOT confusion under Linux Nate Eldredge
2023-03-26  8:28 ` PATCH: Handle SIGIOT as an alias to SIGABRT if they are the same signal number Mikael Magnusson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).