I have a program written in C that runs on Linux, MacOS and Windows. Is there a way I can call a function and generate a stack trace? This would be super-useful for me. Ideally I'd like to do it on all three platforms, but Linux is the most important. (Windows is being compiled via mingw.)

Thanks.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

For example, in GCC and the GNU libc C library, you can use backtrace().

As @slugonamission suggests, Windows offers CaptureStackBackTrace() - thanks!

Other platforms may offer similar features.

(This is obviously a platform-dependent question.)

(On a related note, there also exist self-disassembly libraries.)

link|improve this answer
For Windows, this old post may help: POST – slugonamission Nov 7 '11 at 1:12
@slugonamission: Thank you, added! – Kerrek SB Nov 7 '11 at 1:17
feedback

I'm using this code to generate debug stack traces. It uses libunwind to get the stacktrace and libdwfl to read debug information.

It produces nice Java-like stack traces, with function names and source locations. eg.:

at c(stack_trace.c:95)
at b(stack_trace.c:100)
at a(stack_trace.c:105)
at main(stack_trace.c:110)

libunwind should work on Windows and Mac, but libdwfl is Linux and ELF specific.

link|improve this answer
Thanks. I downloaded libunwind and it did not compile on my Mac. – vy32 Nov 7 '11 at 20:06
@vy32 you are right. It turns out they are both Linux specific. – Banthar Nov 7 '11 at 20:36
feedback

Your Answer

 
or
required, but never shown

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