Top "Backtrace" questions

A backtrace is the series of currently active function calls for the program.

Javascript backtrace

How to I get a backtrace in Javascript? Ideal features: entry function name, or some meaningful identifier for anonymous functions, …

javascript reflection callstack backtrace
Is there a way to dump stack trace with line number from a Linux release binary?

I have a requirement of dumping stack traces when my c++ Linux application crashes. I was successfully able to do …

c++ linux backtrace
StackWalk64 on Windows - Get symbol name

Alright, second question on SO in one day. Looks like Windows programming makes me happy... : S I'm currently trying to …

c windows stack backtrace
Getting a backtrace of other thread

In Linux, to get a backtrace you can use backtrace() library call, but it only returns backtrace of current thread. …

linux multithreading backtrace
Getting the current stack trace on Mac OS X

I'm trying to work out how to store and then print the current stack in my C++ apps on Mac …

macos backtrace
How do I get a stack trace using the ruby debugger?

I am trying to use the ruby debugger in a Rails app. What command do I need to type at …

ruby-on-rails ruby debugging backtrace
What is the meaning of question marks '?' in Linux kernel panic call traces?

The Call Trace contains entries like that: [<deadbeef>] FunctionName+0xAB/0xCD [module_name] [<f00fface>] ? AnotherFunctionName+0…

linux linux-kernel kernel backtrace panic
Is there a library call to addr2line?

I need to get the information provided by addr2line (file and line from backtracing a function call) from within …

c++ c linux backtrace addr2line
gdb weird backtrace

My program is statically compiled with dietlibc. It is compiled on ubuntu x64 (compiled for x86 using the -m32 flag) …

c gdb coredump backtrace
Getting the backtrace from the catch block

I am using backtrace to get the information from where the exception is thrown. In the constructor of my exception, …

c++ linux exception-handling backtrace