Date: Thu, 27 Mar 1997 13:19:00 +0300 (IDT) From: Eli Zaretskii To: Robert Hoehne cc: djgpp AT delorie DOT com Subject: Re: sigabrt In-Reply-To: <3338F9A3.44E0@Mathematik.tu-chemnitz.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wed, 26 Mar 1997, Robert Hoehne wrote: > fred Kuo wrote: > > > > I used RHIDE to compile my program and used building all successfully. > > But error message came out at a specific line, and give a message : > > sigabrt derived > > > > What does this mean? Is there a document on these error messages? > > > > The meaning of the message is very simple. Your program has somewhere > a fault, which generates a call to 'abort()' and this function > generates a signal SIGABRT. As far as I can see, `abort' doesn't generate any signal at all, it just exits after printing "Abort!". So unless RHIDE changes anything in its integrated debugger, SIGABRT has nothing to do with `abort'. In fact, I think SIGABRT is not generated and not handled anywhere in DJGPP, so I suspect some screw-up with signal-handling code in the program that Fred wrote.