tags:

views:

116

answers:

3

looking for a native linux program that lets you view the call stack.

+5  A: 

You can always run it in gdb debugger, stop at a point and inspect call stack.

stefanB
Specifically, with the `bt` command.
caf
A: 

As in 'gdb' - the GNU Debugger?

If not, what are you after - in what context do you want to see the call stack?

Jonathan Leffler
A: 

Very limited information in your question but you can use "addr2line" to translate stack trace to the code of your application (assuming you have an executable with debug symbols).

Zepplock