mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-05-22 00:11:30 +02:00
52623: add some Solaris signal descriptions
This commit is contained in:
parent
5331ff11c6
commit
3078e07729
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2024-02-28 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 52623: Src/signames2.awk: add some Solaris signal descriptions
|
||||
|
||||
2024-02-28 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 52594: Completion/Zsh/Command/_kill, Doc/Zsh/builtins.yo,
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
if (signam == "CONT") { msg[signum] = "continued" }
|
||||
if (signam == "EMT") { msg[signum] = "EMT instruction" }
|
||||
if (signam == "FPE") { msg[signum] = "floating point exception" }
|
||||
if (signam == "FREEZE") { msg[signum] = "checkpoint freeze" }
|
||||
if (signam == "HUP") { msg[signum] = "hangup" }
|
||||
if (signam == "ILL") { msg[signum] = "illegal hardware instruction" }
|
||||
if (signam == "INFO") { msg[signum] = "status request from keyboard" }
|
||||
|
@ -43,6 +44,7 @@
|
|||
if (signam == "SEGV") { msg[signum] = "segmentation fault" }
|
||||
if (signam == "SYS") { msg[signum] = "invalid system call" }
|
||||
if (signam == "TERM") { msg[signum] = "terminated" }
|
||||
if (signam == "THAW") { msg[signum] = "checkpoint thaw" }
|
||||
if (signam == "TRAP") { msg[signum] = "trace trap" }
|
||||
if (signam == "URG") { msg[signum] = "urgent condition" }
|
||||
if (signam == "USR1") { msg[signum] = "user-defined signal 1" }
|
||||
|
@ -51,6 +53,7 @@
|
|||
if (signam == "WINCH") { msg[signum] = "window size changed" }
|
||||
if (signam == "XCPU") { msg[signum] = "cpu limit exceeded" }
|
||||
if (signam == "XFSZ") { msg[signum] = "file size limit exceeded" }
|
||||
if (signam == "XRES") { msg[signum] = "resource control exceeded" }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue