cygwin: accept SIGIOT as alias of SIGABRT

winsup/cygwin/
	* include/cygwin/signal.h (SIGIOT): Define SIGIOT in terms of SIGABRT.
	* strsig.cc (struct sigdesc): Ditto.

	winsup/doc/
	* utils.xml (kill): Document SIGIOT.

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz
2016-02-17 23:13:32 -06:00
parent c716affcef
commit 7503575f1d
3 changed files with 4 additions and 1 deletions

View File

@@ -26,7 +26,8 @@ struct sigdesc
_s(SIGQUIT, "Quit"), /* 3 */ \
_s(SIGILL, "Illegal instruction"), /* 4 */ \
_s(SIGTRAP, "Trace/breakpoint trap"), /* 5 */ \
_s(SIGABRT, "Aborted"), /* 6 */ \
_s2(SIGABRT, "Aborted", /* 6 */ \
SIGIOT, "Aborted"), \
_s(SIGEMT, "EMT instruction"), /* 7 */ \
_s(SIGFPE, "Floating point exception"), /* 8 */ \
_s(SIGKILL, "Killed"), /* 9 */ \