|
From: Jeff D. <jd...@ka...> - 2000-08-15 04:42:36
|
> (gdb) i sym 0x10034f7d > proc_pid_lookup + 353 in section .text I've seen a bunch of strange things happen around there. I'm chasing one of them now. > (gdb) i line *0x10034f7d Line 64 of "/usr/src/uml-linux/ > linux-2.4.0-test6.uml/include/asm/arch/atomic.h" > starts at address 0x10034f7d <proc_pid_lookup+353> > and ends at 0x10034f7f <proc_pid_lookup+355>. You can get better line info by stepping forward from the last address (0x10034f7f) + 1 until you get a line number in a .c file. That will tell you where atomic_inc was called from. Jeff |