vote up 0 vote down star

Can someone please provide an implementation of a C function that gets invoked to dump the current stack? It's for a x86 linux system. It can be invoked in 2 ways: explicitly by another function, or after a crash (probably as a trap/int handler). The output can be either to the screen or to a file, as indicated by a parameter (handle). A clear explanation/comments of how the stack is unwound would obviously be very helpful. Thank you.

flag

Are you directly looking for a textual output of the call stack or would a binary core dump also work for you? – Ates Goral Oct 3 '08 at 18:01
I was thinking of textual output; it seems that in gnu's libc case, backtrace() provides the bin output and backtrace_symbols() provides the textual output. – jd Oct 4 '08 at 17:58

3 Answers

vote up 3 vote down check

See this question

link|flag
Thanks for the pointer Adam. I wanted to look at the source code to see how the back tracing was done. This is a link to the gnu source code repository - backtrace.c cvs.savannah.gnu.org/viewvc*checkout*/libc/debug/backtrace.c?root=libc&revision=1.1.2.1&content-type=text%2Fplain – jd Oct 3 '08 at 17:41
vote up 0 vote down

following on Adam's answer, the source code that shows how to perform the actual stack backtracing is in gnu libc's backtrace(), under /libc/debug/backtrace.c - not sure if the full link below will be accepted by stackoverflow's html filters...

http://cvs.savannah.gnu.org/viewvc/*checkout*/libc/debug/backtrace.c?root=libc&revision=1.1.2.1&content-type=text%2Fplain

link|flag
vote up 0 vote down

The documentation for the backtrace() function is in the GNU LIBC MANUAL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.