Tagged Questions

32
votes
11answers
26k views

How can one grab a stack trace in C?

I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.) Thanks for ...
12
votes
2answers
975 views

How can I rethrow an exception in Javascript, but preserve the stack?

In Javascript, suppose I want to perform some cleanup when an exception happens, but let the exception continue to propagate up the stack, eg: try { enterAwesomeMode(); doRiskyStuff(); // might ...
6
votes
2answers
2k views

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 set_terminate() to set a function that will be called (in place of ...
6
votes
6answers
1k views

Need a way to periodically log the call stack/stack trace for EVERY method/procedure/function called

I'm working on a very large application where periodically I'd like to log the ENTIRE call stack up until the current execution point (not on an exception). The idea here is that I want a map of the ...
3
votes
3answers
150 views

What is the difference between Call Stack and Stack Trace?

What is the difference between the terms "Call Stack" and "Stack Trace" ?
3
votes
1answer
247 views

c++ stacktrace from the function an exception is thrown?

I can make use of gcc's backtrace to obtain a stack trace at any given point of a program, but I would like to obtain the trace from whatever frame the stack was in at the time an exception is thrown, ...
3
votes
1answer
234 views

Is there a way to examine the Stack variables at runtime in c#?

I wonder if there is a way to dump the contents of the stack at runtime? I am interested in both the parent functions information (name, parameters, line) which I know I can get with the StackTrace ...
2
votes
3answers
82 views

Warnings from caller's perspective (aka Python-equivalent of Perl's carp)?

Short version: Is there way to achieve in Python the same effect achieved by Perl's Carp::carp utility? Long version (for those unfamiliar with Carp::carp): Suppose we are implementing some ...
1
vote
1answer
130 views

IronRuby Stack Trace

Greetings! We're working on an IronRuby project. There's a C# WPF application. We wrote a module for that application. When an error is raised in IronRuby, the application shows a message box. It only ...
1
vote
3answers
239 views

How can we take minidump during exceptions

I am working on a sub project(.NET) which deals with exceptions. Below is my requirement When an exception occurs, the exception assembly must capture CPU information Method which caused the issue ...
1
vote
1answer
59 views

How can I get the stack trace in Specman?

Is there any way to get the stack trace in Specman? I patched the functions that force signals to tell me when signals are forced. I want to be able to tell where the forcing originated.
0
votes
1answer
212 views

print callstack of a thread (c++), StackWalker or not?

Needing to print callstacks of C++ application thread by thread handle, I turned to StackWalker which is mentioned in previous stackoverflow answers. However, the StakWalker code is dated 2005. I ...
0
votes
1answer
151 views

How can I see the stack trace in Octave's debug mode

I have a failure in some inner library function in Octave. I want to debug the calling function, but I don't know how to do it. How can I see the stack trace? How can I move between frames?
0
votes
2answers
1k views

Can somebody give me a hand about this stacktrace in iPhone app?

Program received signal: “EXC_BAD_ACCESS”. (gdb) bt #0 0x30011940 in objc_msgSend () #1 0x30235f24 in CFRelease () #2 0x308f497c in -[UIImage dealloc] () #3 0x30236b78 in -[NSObject release] () ...