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
2009-11-23 06:23:03
Specifically, with the `bt` command.
caf
2009-11-23 06:48:39
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
2009-11-23 06:23:10
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
2009-11-23 06:23:14