Top "Callstack" questions

A stack that stores details of the functions called by a program in sequence, so that each function can return on completion to the code that called it.

How to get the name of the calling class in Java?

I would like some help on this matter, Example: public class A { private void foo() { //Who invoked me? } } public class …

java callstack
How to get Java Call Stack of a running application

I am working on very huge java web based application. As there is no proper logging done while development so …

java debugging callstack
c++ stack trace from unhandled exception?

This question has been asked before and there have been windows-specific answers but no satisfactory gcc answer. I can use …

c++ exception-handling stack-trace callstack unhandled-exception
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
How to get the full call stack from Valgrind?

I run Valgrind with the following parameters: --leak-check=full --show-reachable=yes --leak-resolution=high --num-callers=100 --trace-children=yes In memory leaks log, …

memory-leaks valgrind callstack
What is the default stack size in Node.js?

I know how to set the stack size thanks to: How can I increase the maximum call stack size in …

node.js callstack
WinDBG View Passed Arguments to Any Function

I'm using windbg to debug an Windows executable. I want to know how I can see arguments passed to any …

debugging windbg callstack
What is the purpose of the _chkstk() function?

I recently used the /FAsu Visual C++ compiler option to output the source + assembly of a particularly long member function …

c++ c windows visual-c++ callstack
How can I see the exception call stack in SharePoint 2010?

I am trying to port a SharePoint 2007 site collection feature to 2010. During the feature activation, SharePoint shows the "yellow screen …

sharepoint web-config sharepoint-2010 callstack
Checking stack usage at compile time

Is there a way to know and output the stack size needed by a function at compile time in C ? …

c compiler-construction callstack