Message-ID: <3911BF98.EB8FA972@softhome.net> Date: Thu, 04 May 2000 21:21:12 +0300 From: Laurynas Biveinis X-Mailer: Mozilla 4.72 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: DJGPP Workers Subject: SIGIOT for DJGPP? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Current CVS GCC sources use SIGIOT signal, which is undefined in DJGPP. A quick web search indicated that it is a SIGIOT Generated by the PDP-11 "iot" instruction; equivalent to SIGABRT. Default action is to dump core. OK to define it as a synonim to SIGABRT? Laurynas Biveinis ---8<-----8<----- --- signal.h.old Sun Jan 30 16:28:08 2000 +++ signal.h Thu May 4 21:18:34 2000 @@ -14,6 +14,7 @@ /* 256 software interrupts + 32 exceptions = 288 */ #define SIGABRT 288 +#define SIGIOT 288 /* A synonim for SIGABRT */ #define SIGFPE 289 #define SIGILL 290 #define SIGSEGV 291