From owner-freebsd-hackers Tue May 28 05:24:44 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA21860 for hackers-outgoing; Tue, 28 May 1996 05:24:44 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id FAA21854 for ; Tue, 28 May 1996 05:24:33 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id WAA17117; Tue, 28 May 1996 22:05:29 +1000 Date: Tue, 28 May 1996 22:05:29 +1000 From: Bruce Evans Message-Id: <199605281205.WAA17117@godzilla.zeta.org.au> To: grog@lemis.de, gurney_j@resnet.uoregon.edu Subject: Re: signal 4? Cc: hackers@FreeBSD.org Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >> what exactly is signal 4? >>From : >... >#define SIGILL 4 /* illegal instruction (not reset when caught) */ This comment doesn't seem to have been changed since prehistoric times. All signals are "not reset when caught" in FreeBSD, unless the recently introduced SA_RESETHAND is used to break them. The comment is now wrong as well as misleading, since SA_RESETHAND may be used to break SIGILL :-). Bruce