Date: Fri, 29 Jun 2001 09:37:18 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: djgpp AT delorie DOT com Message-Id: <8011-Fri29Jun2001093717+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 In-reply-to: <3b3be8da.252999345@news.primus.ca> (invalid@erehwon.invalid) Subject: Re: Peculiar behavior of program. References: <3b3b4948 DOT 212143163 AT news DOT primus DOT ca> <3405-Thu28Jun2001193951+0300-eliz AT is DOT elta DOT co DOT il> <3b3be8da DOT 252999345 AT news DOT primus DOT ca> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: invalid AT erehwon DOT invalid (Graaagh the Mighty) > Newsgroups: comp.os.msdos.djgpp > Date: Fri, 29 Jun 2001 02:35:09 GMT > > >Yes; and CWSDPMI did just that: you've got the EIP where your program > >crashed. That's a lot. > > Unfortunately, I can't *use* it, because symify doesn't translate it > into something that can be connected with an actual suspect line of > code, function, variable, or anything. Of course, you can use it: fire up GDB, load your program (don't even run it, just load it into the debugger), and then type: list *0x12345678 If this address is in one of your functions that were compiled with -g, GDB will show you the source line where this address belongs. If it's in a library function, you'll see the function's name (IIRC). It's all in the DJGPP FAQ: see section 9.3.