Re: gdb can break on __init function ?

Keith Owens (kaos@ocs.com.au)
Thu, 13 Apr 2000 23:50:38 +1000


On Wed, 12 Apr 2000 14:03:43 -0700,
Jun Sun <jsun@mvista.com> wrote:
>I am using gdb/kdb to debug kernel through a serial line. It mostly
>works. However I notice that I cannot break on any functions declared
>as "__init". If I remove that declaration, everything is fine.

__init code and data is collected in one place by the linker. After
the kernel has finished initialization, the entire __init code and data
is *freed* and reused as kmalloc space. Setting breakpoints in code
that will be removed and reused for random data is a bad idea.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/