Report forwarded to debian-bugs-dist@lists.debian.org:
Bug#9294; Package base/kernel.   debian-bugs-dist@lists.debian.org  Sorry, this message was lost when this bug report was restored from a backup.   Acknowledgement sent to chrisb@siggy.iceonline.com (Chris Brown):
New bug report received and forwarded.   chrisb@siggy.iceonline.com (Chris Brown)  Sorry, this message was lost when this bug report was restored from a backup.   Received: (at submit) by bugs.debian.org; 2 May 1997 01:57:03 +0000 Received: (qmail 13667 invoked from network); 2 May 1997 01:56:59 -0000 Received: from siggy.iceonline.com (198.231.65.5) by master.debian.org with SMTP; 2 May 1997 01:56:59 -0000 Received: by siggy.iceonline.com (940816.SGI.8.6.9/940406.SGI) for submit@bugs.debian.org id SAA22592; Thu, 1 May 1997 18:56:57 -0700 From: chrisb@siggy.iceonline.com (Chris Brown) Message-Id: <199705020156.SAA22592@siggy.iceonline.com> Subject: abort() To: submit@bugs.debian.org Date: Thu, 1 May 1997 18:56:56 -0700 (PDT) X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 319 Package: base/kernel Version: Linux debian 2.0.27 #1 Fri Jan 10 23:46:22 MET 1997 i586 The following program infinitely loops, despite the fact that the man page (man 3 abort) says it will not. I'm not sure which is at fault, however. #include void main( void ) { signal( SIGABRT, SIG_IGN ); abort(); }