Tagged Questions

3
votes
4answers
227 views

Is there a good C++ crash reporting library that works well with Visual Studio 2005?

After reading this previous discussion and this one, it looked as though Crashrpt was exactly what I was looking for, but it seems it's no longer being maintained and, after playing with it, found it …
12
votes
5answers
743 views

Good crash reporting library in c#

Does anyone know of a good crash reporting library for C#? In C++ there is CrashRpt available, so I'd like something along those lines. Ideally I'd like the library to zip up general information …
3
votes
4answers
157 views

how do I specify the source code directory in VS when looking at the call stack of a memory dump?

I am analyzing a .dmp file that was created and I have a call stack which gives me a lot of info. But I'd like to double click on the call stack and have it bring me to the source code. I can …
0
votes
2answers
85 views

How do you configure the email settings in CrashRpt to send the crash dump?

After reading this discussion and this discussion about using CrashRpt to generate a crash dump and email it to the developers, I've been having a difficult time finding any instructions/tutorials for …
10
votes
7answers
928 views

Any recommended VC++ settings for better PDB analysis on release builds

Are there any VC++ settings I should know about to generate better PDB files that contain more information? I have a crash dump analysis system in place based on the project crashrpt. Also, my …
1
vote
2answers
946 views

How to diagnosis app crash from OS X error log?

Short Q.: What does this exception mean? "EXC_BAD_ACCESS (0x0001)" Full Q.: How can I use this error log info (and thread particulars that I omitted here) to diagnosis this app crash? (NB: I have no …
3
votes
7answers
260 views

Crash reporting in C for Linux

Following this question: Good crash reporting library in c# Is there any library like CrashRpt.dll that does the same on Linux? That is, generate a failure report including a core dump and any …