From: Yu Jaemin Newsgroups: comp.os.msdos.djgpp Subject: Re: sigsegv problems.... Date: 1 Oct 1998 15:50:07 GMT Organization: Korea Telecom Lines: 28 Sender: Yu Jaemin Message-ID: <6v08bf$b60$1@news.kornet.nm.kr> References: <01bded24$67a9aaa0$0a016464 AT hwa> <361370E3 DOT E38068C1 AT montana DOT com> NNTP-Posting-Host: soback.kornet.nm.kr User-Agent: tin/pre-1.4-980105 (UNIX) (SunOS/5.5.1 (sun4u)) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp bowman wrote: > Helge Waastad wrote: >> >> When I run my program, I get this error message: >> >> Exciting due to signal SIGSEGV avsluttet. > Compile with the -g option. When the program crashes and the dump is > still on the screen, run > symify progname.exe > where progname isyour executable. This will fill in the function names, > and lines leading up to the fault. Look for the improper use of NULL or > uninitialized pointers, the use of some library functions against null > strings, or array index problems. also you can use GDB. type... gdb test.exe and type r (means run) then program may stop and gdb tells you where it was. (I'm not sure but you'll be able to find GDB manual in djgpp directory. GDB is pretty good. :) Jaemin