Tagged Questions
80
votes
22answers
34k views
How to generate a stacktrace when my gcc C++ app crashes
When my c++ app crashes I would like to generate a stacktrace.
I already asked this but I guess I needed to clarify my needs.
My app is being run by many different users and it also runs on Linux, ...
24
votes
3answers
11k views
C++ display stack trace on exception
I want to have a way to report the stack trace to the user if an exception is thrown. What is the best way to do this? Does it take huge amounts of extra code?
To answer questions:
I'd like it to be ...
20
votes
10answers
3k views
Stack trace for C++ using gcc
We use stack traces in proprietary assert like macro to catch developer mistakes - when error is caught, stack trace is printed.
I find gcc's pair backtrace()/backtrace_symbols() methods ...
11
votes
9answers
2k views
How to extract debugging information from a crash
If my C++ app crashes on Windows I want to send useful debugging information to our server.
On Linux I would use the GNU backtrace() function - is there an equivalent for Windows?
Also, is there a ...
10
votes
6answers
4k views
Portable C++ Stack Trace on Exception
I am writing a library that I would like to be portable. Thus, it should not depend on glibc or Microsoft extensions or anything else that is not in the standard. I have a nice hierarchy of classes ...
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 ...
5
votes
1answer
750 views
Get stack backtrace of a running process
I'm trying to get the stack backtrace of a running process (PID and binary path are known) from another program. The program in question is written in C++ and compiled with g++ with gdb debugging ...
5
votes
2answers
616 views
Is DbgHelp.dll built-in to Windows? Can I rely on it being there?
I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL.
It relies on DbgHelp.dll
Is DbgHelp.dll built-in to Windows Vista, WS2008, ...
4
votes
3answers
4k views
How do I obtain a stack trace on Windows without using dbghelp.dll?
How do I obtain a stack trace of addresses on Windows without using dbghelp.dll?
I don't need to know what the symbols or function names associated with the addresses, I just want the list of ...
4
votes
7answers
3k views
How to get a stack trace when C++ program crashes? (using msvc8/2005)
Sometimes my c++ program crashes in debug mode, and what I got is a message box saying that an assertion failed in some of the internal memory management routines (accessing unallocated memory etc.). ...
3
votes
0answers
59 views
Red screen of death on old DOS accounting software (corrupted background structure) [closed]
I need help tracing down the source of this error I'm getting.
I'm guessing somebody who was doing C++ in the DOS era could have seen it already.
Maybe it is not an OS error but an application error ...
3
votes
1answer
237 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
272 views
C++ figure out if the debugger is attached
I use stackwalk64 to generate stacktraces for C++ in visual studio 2008 using the latest symchk.exe and dbghlp.dll. This works fine when I'm running the standalone exe. However, when the debugger is ...
3
votes
2answers
624 views
How to print each function call during execution in WinDbg?
I am debugging an application written in VC++.
How do i make WinDbg print the function name and all the values of the arguments to the functions during execution of the debuged process?
2
votes
1answer
86 views
Incorrect stack trace in core by uncaught std::exception
There is my code:
#include <string>
#include <tr1/functional>
using namespace std;
using namespace std::tr1;
using namespace std::tr1::placeholders;
class Event
{
public:
typedef ...
2
votes
5answers
138 views
Stack trace running UNIX application
How can I perform a live stack trace on a running UNIX applicaiton, and are there any utilities that are useful in digesting the stack trace once its done?
I'm looking to see if any functions are ...
2
votes
1answer
189 views
How do you walk a mixed-mode (managed+native) stack with dbghelp!StackWalk64?
I'm trying to walk a callstack that contains both managed and native frames on a x64 process using StackWalk64. Everything works fine until the first or second managed frame, after which StackWalk64 ...
2
votes
3answers
123 views
tool for getting the stack trace of on a file
Do you know if there is a tool in Windows that is able to start a C++ application and, when there is an exception, is able to automatically save to file the stack trace information?
I now that there ...
2
votes
2answers
367 views
How to obtain the native stacktrace from native exceptions caught in managed code
I have some managed code that calls to a method inside some native DLL(i have the appropriate symbol files).
Sometimes, that native method throws an exception which I catch in my managed code. ...
2
votes
2answers
741 views
Generating C++ BackTraces in OS/X (10.5.7)
I've been utilizing backtrace and backtrace_symbols to generate programmatic stack traces for the purposes of logging/diagnosis. It seems to roughly work, however, I'm getting a little bit of ...
1
vote
3answers
59 views
what is the return value of the function that returns int, but isn't returning anything explicitly. for instance output of
int fun()
{
printf("\ncrap");
}
void main()
{
printf("\n return value of fun %d", fun());
}
and please, can you explain on how the stack allocates the memory for return values and how the stack ...
1
vote
2answers
163 views
Stackdump in C++ not showing the stack trace
I have an app that crashes sometimes and creates the next file: (APP.exe.stackdump)
Exception: STATUS_ACCESS_VIOLATION at eip=6BA4B246
eax=67452301 ebx=EFCDAB89 ecx=98BADCFE edx=10325476 esi=FFFFFFFF ...
1
vote
4answers
291 views
How to find caller assembly name in unmanaged c++ dll
I have an unmanaged c++ dll. I am calling external methods of this unmanaged dll from c# (.net 3.5)
I am looking for a way to find witch c# assembly is calling my unmanaged c++ dll (into my c++ dll) ...
1
vote
1answer
158 views
How can I get the Python module and line number that called my C++ function via Boost::Python?
I have a C++ function that is being called from many Python functions via Boost::Python. When the C++ function detects bad arguments I want to write a log message and continue processing. In that log ...
1
vote
1answer
141 views
Locate modules by stack address
I have a Winodws Mobile 6.1 application running on an ARMV4I processor. Given a stack address (from unwinding an exception), I like to determine what module owns that address.
Using the ToolHelpAPI, ...
1
vote
2answers
421 views
What does this stack trace possibly mean?
I'm having segfault problem in my application written using C++ and compiled using GCC 4.3.2. It is running under Debian 5 x64.
The process crashed on the following line of code:
#0 ...
1
vote
5answers
692 views
Function name from Windows stack trace
How do I restore the stack trace function name instead of <UNKNOWN>?
Event Type: Error
Event Source: abcd
Event Category: None
Event ID: 16
Date: 1/3/2010
...
1
vote
3answers
1k views
Get stack trace from uncaught exception?
I realise this will be platform specific: is there any way to get a stack trace from an uncaught C++ exception, but from the point at which the exception is thrown?
I have a Windows Structured ...
1
vote
4answers
331 views
Help interpret this stack trace
I know that it fails at strcmp. I've provided operator< below, which calls strcmp.
On line #1 there's the value @0xbfffeeac. What does the @ mean?
#0 0x00212bd8 in strcmp () from /lib/libc.so.6
...
0
votes
0answers
41 views
Strange access violation after adding a tinyXML library
I am not that familiar with C++ inside mechanism, so I am totally lost about the Access Violation I recently met.
I am writing C++ in Visual Studio 2008. My application is built on a library SRILM ...
0
votes
3answers
60 views
After “break all” in Visual Studio 2010, some threads' call stacks are mostly missing in my C++ program
The latest revision of my cross-platform C++ application (using Juce) has what's probably a deadlock or conceivably an unbounded loop in Windows but not Mac and unfortunately we don't have a Windows ...
0
votes
1answer
57 views
mystackwalker.cxx(29) : error C3861: 'CaptureStackBackTrace': identifier not found
I am using CaptureStackBackTrace to create my own stack trace. But when I compile my code it says "error C3861: 'CaptureStackBackTrace': identifier not found". I have already included winbase.h. And ...
0
votes
1answer
58 views
Why these memory values never change in GDB?
Once again, thank you for the great help so far.
The source code:
int main()
{
int a = 20;
int b = 10;
int c;
c = a + b;
return 0;
}
Reading symbols from /home/jwxie/a.out...done.
...
0
votes
0answers
85 views
Help with recursive stack trace and exception due to apparent dll unload
What does a stack trace that looks like this mean?
ntdll.dll!_RtlBackoff@4() + 0x3a bytes
ntdll.dll!_RtlAcquireSRWLockShared@4() - 0x32a8f bytes
ntdll.dll!_RtlLookupFunctionTable@12() + 0x2a ...
0
votes
1answer
189 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
2answers
87 views
Detecting functions using stack trace
I am looking at an application with a debugger (I don't have the source code!).
I put a breakpoint in a certain function (exported function) and I look at the stack trace.
Obviously I cannot see the ...
0
votes
2answers
436 views
terminate called after throwing an instance of 'std::string'
I have this binary thats crashing by throwing an exception of type std:string.
Stack trace from a stripped binary:
terminate called after throwing an instance of 'std::string'
*** Aborted at ...
0
votes
2answers
70 views
C++ Crash Dumps on POSIX
I have a big C++ code (server for some application).
This application is big, and catch a crash per 2 months in average.
And i can't simulate this crash to catch her with gdb.
Is exists some cool api ...
0
votes
1answer
172 views
c++ googlemocks : Getting a stack trace of an uninitialized call
Mock class looks like this :
struct MockClass
{
MOCK_METHOD0( foo, void () );
};
If I forget to set an expected calls on a mock object, I get something like this :
GMOCK WARNING:
Uninteresting ...
0
votes
1answer
230 views
custom (non-exception) error handling strategy in c++
What error handling schemes people use in c++ when its necessary, for X or Y reason, to avoid exceptions? I've implemented my own strategy, but i want to know what other people have come up with, and ...
0
votes
4answers
381 views
C++ memory leak detecting method
I'm working on a project using many external library on windows.
I got problem with memory leak: i detected many memory leaks by overriding operator new/new[] and delete/delete[]. The problem is i ...
0
votes
1answer
604 views
Why does StackWalk64 return always true?
I tried to make my program dump and save its stack trace when crashes. I installed my own win32 SE handler with _set_se_translator and tried to dump the stack trace with StackWalk64 and finally throw ...