|
From: Jeremy F. <je...@go...> - 2005-02-16 07:45:30
|
On Tue, 2005-02-15 at 21:40 -0600, Nicholas Nethercote wrote: > gdb tells me: > > Program terminated with signal 11, Segmentation fault. > #0 0xb805ab88 in ?? () > > if that's any help. I've attached the strace output, too. > > How do I get the faulting address? "x/i $eip" will show you the faulting instuction; from that you can determine the effective address it was trying to access. You can get register values with "print $<reg>". J |