Tagged Questions
A core dump or crash dump consists of the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally
16
votes
15answers
2k views
What would cause ANY .NET application to crash immediately… except a project I create and Debug inside Visual Studio?
My software recently got deployed to a customer who said that the application was crashing immediately after it started. After some initial debugging, the customer provided me remote access to one of ...
14
votes
6answers
6k views
Generating .NET crash dumps automatically
I know how to generate Crash Dump files with ADPlus or DebugDiag, but I'm wondering if there is a way to do this on a customer's computer without installing these tools... specifically, I would like ...
9
votes
4answers
13k views
How to use WinDbg to analyze the crash dump for VC++ application
Any one knows how to use the windbg for analyzeing dump file.
Please share the info how to analyze crash dump using windbg.
Thanks,
Haranadh
8
votes
2answers
334 views
Get thread specific info in iOS crash report?
I'm using the following code to get crash reports from my iOS application:
void *frames[128];
int i,len = backtrace(frames, 128);
char **symbols = backtrace_symbols(frames,len);
NSMutableString ...
8
votes
2answers
345 views
Generate / create mdump files for in my app
Im looking for a way to generate minidump files in my applications simular to what ProcDump does but prefarably with code and not having to extract a 3dparty tool to do it.
The main reasons for not ...
7
votes
3answers
128 views
How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java
How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java.
PS: I am not talking of StackOverflowError Error in Java which gracefully shuts the JVM. I am talking of EXCEPTION_STACK_OVERFLOW in ...
7
votes
3answers
1k views
Cross-platform crash handler
I'm looking for a cross-platform crash handler. Google Breakpad looks promising, but it is sorely lacking any documentation, and requires a reasonable amount of fiddling to actually get going.
What ...
6
votes
2answers
181 views
Cross platform crash-reporters
Are there any cross platform crash reporters for C++ besides google-break pad? I have seen google-breakpad but it has very very limited documentation, and I have nothing seen very much mentioned here, ...
6
votes
3answers
3k views
how to generate thread dump java on out of memory error
does java 6 generate thread dump in addition to heap dump (java_pid14941.hprof)
this is what happened to one of my applications.
java.lang.OutOfMemoryError: GC overhead limit exceeded
Dumping heap ...
6
votes
5answers
3k views
Core dump in Linux
I want to create a core dump whenever my process crashes. Currently I am following this approach:
Build a special "debug" version of the program using "-g" of gcc/g++.
Execute "ulimit -c unlimited"
...
5
votes
4answers
1k views
Need help with debugging dump files in Visual Studio
This is quite long, but quite simple, and I know about accepting answers/upvoting :)
I am using Visual Studio 2010 Professional Edition, and Windows Vista.
Firstly, I have this code. As you can see, ...
5
votes
4answers
225 views
How do I get a string description of a Win32 crash while in Top level filter (I am looking for the address of the instruction at the top of the stack)
If I use a class/method like the one described here how can I get the description/address of the call at the top of the stack?
Basically I want some value I can use in a call to our bug tracking ...
4
votes
2answers
92 views
Creating a minidump in a Python application (Windows)
I'm working on a Python application. Sometimes the interpreter crashes when in a third party C++ DLL.
I'm thinking about writing a Python extension that installs a handler for unhandled structured ...
4
votes
1answer
328 views
Google Breakpad examples
Does anyone have any examples of configurations for google breakpad? I can build it just fine, however, there is limited documentation. I would like to see examples, such as how to modify where crash ...
4
votes
2answers
306 views
Google Breakpad fails to compile
I am attempting to build google-breakpad and I am getting the error
File "C:\google-breakpad\src\tools\gyp\pylib\gyp\generator\msvs.py", line 907, in _GetPathDict
parent_dict = ...
4
votes
2answers
164 views
Is there a way to automatically include the console output with the crash log on ios
The crash log returned when your app has an error on iOS is wonderful however it would be 100 times better if it contained the console output from when your app started as part of the log. Is there a ...
4
votes
2answers
2k views
How to enable core dump in my Linux C++ program
My program is written in C++. compiled with gcc, using -g3 -O0 -ggdb flags. When it crashes, I want to open its core dump. Does it create core dump file, or I need to do something to enable core dump ...
4
votes
1answer
2k views
Is it possible to specify where JVM's crash dumps go?
We have a desktop application using JNI that occasionally causes the JVM to crash. Luckily the JVM produces a hs_err_pidXXXX.log file, which is quite useful in debugging such errors. However, it ...
4
votes
2answers
527 views
How can I change a module's checksum in a minidump?
The software that I write (and sell) is compressed and encrypted before I distribute it. Everytime I release a new build, I keep all the .map files and the generated binaries including the exe before ...
4
votes
7answers
1k views
How to identify problem when program crashes without showing error?
Please let me know what steps I need to follow when my application crashes and closes showing the dialog containing "Don't send" and "Send error report" buttons.
What can I possibly do other than ...
4
votes
3answers
1k views
How can I force unhandled exceptions in a WCF thread to crash the process?
So here's the scenario:
I have a WCF service that has a bunch of FaultContracts defined per operation. I would like to arrange it such that if an unhandled exception is thrown in a WCF service ...
3
votes
1answer
168 views
.NET dump analysis using windbg
I am debugging a .NET 3.5 CLR dump using windbg and psscor2.dll extension.
Code where exception happened looks like this:
try
{
...
}
catch
{
...
}
catch
{
...
}
finally
{
...
// exception I ...
3
votes
3answers
149 views
First-chance exception at 0x782260ec in xxx.exe: 0xC0000005: Access violation
My application crashes after some time but I can't find any pattern. I was able to get my hands on crash dump. Application runs on Windows Mobile 6.5. It is written in C#. It uses Imaging API, PInvoks ...
3
votes
1answer
210 views
How to generate good crash log report for Qt application in windows
I got such crash log in one of Qt application, Any idea how qt application is implemented to get such good crash report ?
//=====================================================
Crash Time: Fri ...
3
votes
2answers
387 views
Understand Crash Dump from Visual C++ App
UPDATE
Thanks to feedback below I was able to home in on ADPlus.vbs, which is part of the debugging tools for Windows.
Don't forget to set up _NT_SYMBOL_PATH before you run it.
Using this we've ...
3
votes
3answers
1k views
Detailed memory usage analysis of windows crash dump file?
We have received a native (full) crash dump file from a customer. Opening it in the Visual Studio (2005) debugger shows that we had a crash caused by a realloc call that tried to allocate a ~10MB ...
3
votes
2answers
101 views
How transport to dev team software crash'es from remote clients machines?
I searching people who know some experience with bug tracking on client machines,
if my application works on many client machines who i don't have to it any access.
I have in my application very huge ...
3
votes
3answers
399 views
How to configure Win2008 to generate crash dump
I am running my C++ servi ce on Win2008 server machine. It crashes randomaly, and i do not know why. This is happening on multiple machines in customer site.
How can i configure the system to auto ...
3
votes
4answers
631 views
Win32: Is there a difference between Dr. Watson's full/mini dumps and writing my own?
I have an application that is occasionally crashing in the release build; unfortunately, it looks like it is crashing in a 3rd party DLL. While trying to get a handle on it I've been swimming in a ...
3
votes
1answer
1k views
symbolicatecrash doesn't like my dSYM file
I'm trying to use symbolicatecrash, and having interesting results. A coworker built our distribution build on another machine, so he sent me the dSYM file. After running the symbolicatecrash file ...
3
votes
1answer
3k views
Tomcat or JVM crash dump file?
Our Tomcat server terminated unexpectedly. (It runs as a windows service; the system event log shows an error: Event ID 7034).
Where can I find a dump of a JVM crash, or some indication of why the ...
3
votes
4answers
740 views
Crash reporting watchdog for when my application locks up on a customer's machine
I'm working with a somewhat unreliable (Qt/windows) application partly written for us by a third party (just trying to shift the blame there). Their latest version is more stable. Sort of. We're ...
2
votes
1answer
44 views
Create a dump file for an application whenever it crashes
I am trying to create a dump file for my application whenever it crashes.
I am currently using procdump.exe with -e flag in order to do it, so if I have unhandled exception in my application procdump ...
2
votes
1answer
74 views
Windows: cannot see call stack when opening a minidump
I'm using MiniDumpWriteDump with MiniDumpNormal parameter to dump call stack in SEH exception handler. When I open the dump in VS, I can't see the callstack. I did see it with the same code two days ...
2
votes
2answers
118 views
Getting better debug when Linux crashes in a C programme
We have an embedded version of Linux kernel running on a MIPs core. The Programme we have written runs a particular test suite. During one of the stress tests (runs for about 12hrs) we get a seg ...
2
votes
1answer
112 views
How to capture iOS crashes in MonoTouch application
We have logging in place for any .Net Framework exceptions that occur in our iPad MonoTouch application and can get these back to our support department to help analyze and resolve issues.
However, ...
2
votes
2answers
320 views
How do you troubleshoot an Android system library crash (libwebcore.so)
My Android webview is crashing and the error dump from adb logcat tells me that libwebcore.so is the library causing the segmentation fault. How do you troubleshoot this?
My initial research took me ...
2
votes
2answers
160 views
Is it possible to symbolicate MonoTouch crash dumps and get line numbers out of them?
Is it possible to symbolicate MonoTouch crash dumps and get line numbers out of them? If so, how is it done?
I have configured my project in the following way:
Build in release mode
Checked 'Enable ...
2
votes
2answers
232 views
How to open a C# crash dump (Minidump)
Our C# application calls MinidumpWriteDump upon an unhandled exception.
I have received some crash dumps from users where i cannot seem to open the crash dump with SOS and see the exception that ...
2
votes
6answers
620 views
Crash on MFMailComposeViewController
if ([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init];
mailViewController.mailComposeDelegate = self;
...
2
votes
1answer
172 views
Is it possible to debug win2003 IIS crash dump using windbg on windows XP?
I downloaded symbols for windows2003 server from here http://msdn.microsoft.com/en-us/windows/hardware/gg463028
I did what is described here - ...
2
votes
3answers
530 views
Application.ThreadException vs AppDomain.UnhandledException
First some background: I have a multi-thraded WinForm application that is doing interop to native dlls. This application crashes sometimes with unhandled exception and we are trying to investigate why ...
2
votes
2answers
830 views
Visual Studio 2008 not loading symbols when debugging a .DMP
I'm trying to debug a C# application from a .DMP file and I have the executable, the DLLs and the PDBs all in a folder called "MyFolder." I set the directory containing the source code to C:\MyFolder\ ...
2
votes
2answers
345 views
understanding iOS thread dump that has no application calls
So I have an app that is live in the app store that I've modified to send back crash reports. This has helped me get rid of most of my bugs, but I'm having hard time identifying this one. Below is a ...
2
votes
1answer
151 views
What to do with .mdump/.hdump files?
I am working on a MySQL user-defined function (UDF) that is basically a wrapper for a Windows system function. My problem is that the UDF works as intended for certain inputs, but causes mysqld to ...
2
votes
2answers
289 views
Blackberry crash log collection
Is there a mechanism to collect all the stack traces of a BlackBerry application if I am doing OTA app delivery?
I believe Apple collects and gives us the crash logs, or you can extract them by ...
2
votes
2answers
137 views
How can I disable all the Windows crash handlers like DrWatson and so on
I'm developing a unit test automatic execution application and I need that when one application crashes no dialog appears. A crash dump would be great but the main requirement is that no dialog is ...
2
votes
2answers
291 views
Is there a way to know the thread id in another process which throws an exception?
I am trying to use MiniDumpWriteDump() API to dump a crashed process B from another process A. I am doing this because MSDN said so:
MiniDumpWriteDump should be called
from a separate process if ...
2
votes
3answers
1k views
Debugging dump of 32-bit process captured on 64-bit machine
I recently received a 64-bit crash dump from a customer.
Our processes are all 32-bit, but the customer's machine is running x64 Server 2008.
Visual Studio (both 2008 and 2010 Express) is telling me ...
2
votes
4answers
780 views
iPhone Crash with “No Backtrace”
My iPhone app was recently rejected from the App Store "because it crashes on launch". However, I cannot reproduce this crash. The app works perfectly on both the simulator and a device with the same ...