I'm trying to get the stack backtrace of a running process (PID and binary path are known) from another program. The program in question is written in C++ and compiled with g++ with gdb debugging symbols.

I'm looking for a C or C++ library that works across Linux, HP-UX and Solaris that produces an output similar to the output of calling popen() with something like this:

gdb -batch -x /dev/stdin <BINARY> <PID> << EOF
thread apply all bt
EOF

I have found lsstack ( http://sourceforge.net/projects/lsstack/ ), which is Linux only and know the pstack program for Solaris.

Does anyone know of a reliable way of doing this cross Unix / POSIX?

link|improve this question
There is also the gstack utility on Linux, which works by calling gdb similar to the above. – mark4o Jan 6 '10 at 18:47
feedback

1 Answer

up vote 2 down vote accepted

You need libunwind

link|improve this answer
Thanks! libunwind-ptrace looks very promising. – jsc Jan 6 '10 at 13:09
feedback

Your Answer

 
or
required, but never shown

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