Date: Mon, 12 Feb 1996 23:36:32 -0500 From: dj (DJ Delorie) To: oandico AT eee DOT upd DOT edu DOT ph CC: djgpp AT delorie DOT com In-reply-to: (message from Orlando Andico on Tue, 13 Feb 1996 12:20:52 -0800 (GMT)) Subject: Re: your mail > But SIGFPE and SIGINT exist, right? and I saw someone post some code > for SIGINT which is equivalent to setting up an Int-24h handler. Aren't > these signals available, i.e. the usual stuff can be done with them? I > suppose not all of the POSIX signals are supported -- that's to be > expected, but which ones are? All POSIX signals are "handled" - you can pass any of them to raise() and your signal handler will get called. The question is, how many of them are *called* when POSIX says they should be? I think the register dump is part of the default signal handler, so whenever you see it dump and say "due to signal SIGXXX", you could have added a signal handler for that. Charles would know better, though. He wrote most of that code. DJ