Top "Stack-trace" questions

A report of the active stack frames at a certain point in time during the execution of a program.

Is it possible to get a good stack trace with .NET async methods?

I have the following sample code setup in a WebApi application: [HttpGet] public double GetValueAction() { return this.GetValue().Result; } public …

c# asp.net-web-api stack-trace async-await
exception with no stack trace - how?

We have a service which will log unhandled exceptions at the app domain level (via Log4net). We logged: 2014-01…

c# exception stack-trace unhandled-exception
How to check crash log using android ndk in cocos2d-x

I use cocos2d-x to develop a game, after it runs perfectly in iOs, I turn around to android platform. …

android c++ android-ndk cocos2d-x stack-trace
How to determine main class at runtime in threaded java application?

I want to determine the class name where my application started, the one with the main() method, at runtime, but …

java runtime stack-trace classloader main
How to get non-current thread's stacktrace?

It is possible to get stacktrace using System.Diagnostics.StackTrace, but thread has to be suspended. Suspend and Resume function …

.net multithreading debugging stack-trace visual-studio-debugging
Re-raise Python exception and preserve stack trace

I'm trying to catch an exception in a thread and re-raise it in the main thread: import threading import sys …

python exception stack-trace
How get value of parameters in stacktrace

I can get information about a parameter by StackTrace using something like this: catch (Exception ex) { var st = new StackTrace(…

c# .net exception stack-trace system.diagnostics
hidden.edu.emory.mathcs.backport*

In application thread dump I can see threadpool with five threads like following: "pool-1-thread-5" prio=10 tid=0x000000000101a000 nid=0…

java threadpool stack-trace java.util.concurrent thread-dump
JS how to convert to string the Error Object from the window.error?

I implemented: window.onerror = function (m, s, l, c, e) { } Where the e is the Error Object. For example, it …

javascript stack-trace onerror
Meaningful stack traces for address sanitizer in GCC

I just tried compiling with GCC and the -fsanitize=address flag. When I run my program, the address sanitizer finds …

c++ gcc memory stack-trace address-sanitizer