20566++: prefer SIGCHLD to SIGCLD and SIGPOLL to SIGIO

This commit is contained in:
Peter Stephenson 2004-11-19 09:57:22 +00:00
parent 7daa6320b4
commit e022a9814a
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-11-19 Peter Stephenson <pws@csr.com>
* 20566: Src/signames2.awk: prefer SIGCHLD to SIGCLD.
Also (unposted) prefer SIGPOLL to SIGIO.
2004-11-18 Clint Adams <clint@zsh.org>
* unposted: Completion/Unix/Command/_bogofilter: fix -w/-p typo, which was

View file

@ -12,6 +12,8 @@
split(sigtail, tmp)
signam = substr(tmp[1], 4, 20)
signum = tmp[2]
if (signam == "CHLD" && sig[signum] == "CLD") sig[signum] = ""
if (signam == "POLL" && sig[signum] == "IO") sig[signum] = ""
if (sig[signum] == "") {
sig[signum] = signam
if (0 + max < 0 + signum && signum < 60)