Top "Backtrace" questions

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

How to get name of calling function/method in PHP?

I am aware of function debug_backtrace, but I am looking for some ready to use implementation of function like …

php debugging backtrace method-call
How do I get the backtrace for all the threads in GDB?

Is there an equivalent command in GDB to that of WinDbg's "!process 0 7"? I want to extract all the threads in …

multithreading debugging gdb backtrace
Uncaught TypeError: Cannot read property 'length' of undefined

I have a plugin that access the length property on many elements. However, the javascript console points to line 12 of …

javascript jquery debugging backtrace
How to make backtrace()/backtrace_symbols() print the function names?

The Linux specific backtrace() and backtrace_symbols() allows you to produce a call trace of the program. However, it only …

c linux debugging backtrace
Need more information about Aborted (core dumped)

This bellow code will generate Aborted (core dumped) at last line. code: #include <stdio.h> #include <malloc.…

c malloc runtime-error coredump backtrace
How can I get PHP to produce a backtrace upon errors?

Trying to debug PHP using its default current-line-only error messages is horrible. How can I get PHP to produce a …

php debugging error-handling stack-trace backtrace
How can I save a PHP backtrace to the error log?

I'm using this right now: error_log(serialize(debug_backtrace())); But I have to unserialize it every time. Is there …

php error-handling backtrace
How to include C backtrace in a kernel module code?

So I am trying to find out what kernel processes are calling some functions in a block driver. I thought …

c linux-device-driver kernel backtrace
Win32 - Backtrace from C code

I'm currently looking for a way to get backtrace information under Windows, from C code (no C++). I'm building a …

c windows backtrace
Printing full backtrace in c++

I want to dump a backtrace from a C++ program in Linux in a similar format as it is done …

c++ linux g++ backtrace