On Tuesday, 27 בFebruary 2007 14:25, Gabor Szabo wrote: > Whilre running under -d I get > > Signal SEGV at SomeFile.pm line 2001 > > there is a function call on that line. > > What could this be and why do I get it only when I am running with -d?
A guess: this function is implemented in C and has a bug (e.g: null pointer dereference), causing the kernel to send SEGV to the process. The perl debugger catches this signal and notifies you. If this is the case, I would expect a normal run to be aborted (the default behavior of SEGV) with a core dump. -- Oron Peled Voice/Fax: +972-4-8228492 [EMAIL PROTECTED] http://www.actcom.co.il/~oron ICQ UIN: 16527398 Hi! I'm a .signature virus! Copy me into your ~/.signature to help me spread! _______________________________________________ Perl mailing list [email protected] http://perl.org.il/mailman/listinfo/perl
