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
Questions tagged [crash-dumps]
718 questions
0
votes
1 answer
Redirect APPCRASH Dumps (Or turn them off)
I have an application (didn't write it) that is producing APPCRASH dumps in C:\Windows\SysWOW64. The application while dumping is crippled, but operating at bare minimum capacity to not lose data. The issue is that these dumps are so large that the…

StrangeWill
- 2,106
- 1
- 23
- 36
0
votes
1 answer
Analyzing Crash Dump of Windows Service with SEHException
I have a production windows service written in C# against the .NET Framework 4.0 that is crashing intermittently about once a day. The system adminstrator at the remote site where the service is running extracted a dump file when the latest crash…

thoshaw
- 1
- 1
0
votes
2 answers
.NET WinForms startup crash
Looks like that on some clients our WinForms up crashes on startup. With some I mean very very rare. In one situation we found out that the Arial systemfont was corrupt and caused the crashed in the InitializeComponents on startup. Finding that our…

Stefan Koell
- 1,476
- 3
- 15
- 25
0
votes
0 answers
Automatic crash dump generation from a DLL on Windows
My objective is to generate crash dumps whenever application crashes.
I have a DLL written with C++. It is used from a C# .NET application (among others).
From within the DLL, I set my own custom unhandled exception filter with…

Syed Andaleeb Roomy
- 531
- 1
- 5
- 7
0
votes
0 answers
mdb crash dump analysis unable to find panic location on code
$C
000002a1060d1ff1 cvm_connectivity_master_check_clbk+4(10002c7bc690, 10010de0afb8, 3ec, 0, , 3000004c790)
000002a1060d20a1 vol_kmsg_purge+0x24(10010a514b60, 10010a514b60, 7c09e860, 1, 7, 6)
000002a1060d2151 vol_kmsg_walk_cbq+0x14(70298670,…

vik123
- 95
- 1
- 1
- 4
0
votes
2 answers
Is this kind of crash report useless?
I tried use "PLCrashReport" to collect the crash info then make the app more stable, but turns out that the report is like this(dont even has a call stack,how am I suppose to use it?):
The "Exception:" part,Exception: (null): (null), which should be…

springrider
- 470
- 1
- 6
- 19
0
votes
1 answer
Analyze BSOD WHEA_UNCORRECTABLE_ERROR WIN8 Driver
I have a new Computer for 3 Weeks now and i get a lot of WHEA_UNCORRECTABLE_ERROR BSODs.
I get These Bluescreens random every 30 - 50 minutes.
Here is the dump from WinDbg:
Microsoft (R) Windows Debugger Version 6.2.9200.20512 AMD64
Copyright (c)…

Veeesss
- 83
- 1
- 2
- 7
0
votes
1 answer
C++ BST Memory error - what's wrong with my remove?
The problem I am having is that my tree can only delete a node successfully ONE time only. When I try to have it delete more, it will crash with a segmentation fault (core dumped) error. I can't seem to pintpoint the exact place where it is…

assignment_operator
- 1,213
- 4
- 12
- 14
0
votes
1 answer
Internal error: Oops: 17 on OMAP device
I have the ARM OMAP system which is generatin Oops during some tests.
The system is still alive, but the thread which has created the Oops has died.
I have pasted oops logs below. Please help me to debug this issue.
From log i see that:
Process…

Ashoka K
- 453
- 3
- 6
- 17
0
votes
1 answer
Symbol issue when debugging C# code
I am using WinDbg to load a crash dump from managed code (C#, a console application built for Any CPU), and a crash dump is created on a x64 platform. I am debugging on a x64 platform. I have put the related PDB file into the symbol path.
But…

George2
- 44,761
- 110
- 317
- 455
0
votes
2 answers
How to get crash dump on Handled Exception?
My dll is used by a module which dirtily catch all exceptions and just log it in to a file.
My issue is that there is an access violation in a customer site which is reproducible only on its computer and I want get able this customer to generate a…

Yann
- 225
- 2
- 7
0
votes
0 answers
MongoDB random crashing
MongoDB crashes randomly every couple of days. That is very annoying.
Any idea what causes "got signal 15 (Terminated: 15), will terminate after current cmd ends"?
This is my log:
Fri Jan 25 17:48:40 [initandlisten] connection accepted from…

user1432728
- 1
- 1
0
votes
1 answer
What are "Modules" in a minidump (.mdmp) file mean? Are they loaded for the process?
I am debugging a minidump file that is made when my application is starting. I am viewing the dump file in Visual Studio 2010. What are the "Modules" shown? Are they all loaded for specifically my application ? Or some are just generic, system…

phi
- 1,513
- 1
- 15
- 34
0
votes
1 answer
iPad app in store crashing, trouble working out TestFlight logs
So I'm getting many crash logs for my app showing up in TestFlight on a live app (iPad 5.0+ only)
2 libsystem_c.dylib 0x332a9e92 _sigtramp + 42
3 UIKit 0x34b97372 + 226...
Exception Reason: SIGSEGV
Here is all the threads from the TestFlight log...
…
user2007315
0
votes
1 answer
Symbolicating crash just gives me __PRETTY_FUNCTION__
I have used this code as an UncaughtExceptionHandler for my app to capture some crash information and return it back to me:
NSArray *callStack = [exception callStackReturnAddresses];
int i,len = [callStack count];
// void **frames = new void…

Darren
- 10,182
- 20
- 95
- 162