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
85
votes
3 answers
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 creation, in the program itself, or on computer…

Alex F
- 42,307
- 41
- 144
- 212
75
votes
4 answers
How do I use a dump file to diagnose a memory leak?
I have a .NET service with a normal private working set of about 80 MB. During a recent load test, the process reached 3.5 GB memory usage causing the whole machine to be low on physical memory (3.9 of 4 GB used), and the memory was not released…

Allon Guralnek
- 15,813
- 6
- 60
- 93
57
votes
3 answers
Debugging dump files in Visual Studio
I am using Visual Studio 2010 Professional Edition, and Windows Vista.
Firstly, I have this code. As you can see, it will crash the program!
using System;
namespace Crash
{
class Program
{
static void Main(string[] args)
{
…

niemiro
- 1,778
- 1
- 20
- 37
55
votes
2 answers
minidump vs. fulldump?
I just recently started looking at dump files to help me analyze crashes of the w3wp process on our production environment at work...
And I would like to know, what are the differences between a minidump and a fulldump file ?

gillyb
- 8,760
- 8
- 53
- 80
48
votes
4 answers
How to use WinDbg to analyze the crash dump for VC++ application?
How do I use WinDbg for analyzing a dump file?

Hara
- 1,467
- 4
- 18
- 35
45
votes
3 answers
Changing location of core dump
I want to change the default location of core dump files so that every time a core dump is generated ,it goes to that directory.Also, is it possible to save the dump file by the name of the crashed file in this location?

rogue_knight9
- 561
- 1
- 6
- 11
44
votes
7 answers
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 to be able to configure my application (using a…

Michael Bray
- 14,998
- 7
- 42
- 68
42
votes
6 answers
Find crash logs on iOS 8 device
Crash logs used to be accessible through the Settings app. I can't find that in iOS 8. Where did that go?
It's not gone now is it.

Jonny
- 15,955
- 18
- 111
- 232
36
votes
3 answers
How to list call stack of all managed threads using WinDBG?
I have a dump created from a managed application. I am using SOS/SOSEX extentions to ease my dump analysis. I'd like to list down the call stack of all managed threads as we do ~*kb with native applications. How do we do that?

sarat
- 10,512
- 7
- 43
- 74
35
votes
6 answers
Where to find android crash history
I've been experiencing a great deal of instability on my Verizon Galaxy S III, and I believe it's related to the WiFi driver, or at least something in the networking stack. I get daily full system crashes that cause soft reboots of the OS.
In order…

CJ McAllister
- 291
- 3
- 10
- 20
31
votes
7 answers
A process crashed in windows .. Crash dump location
A windows process got crashed for some reason. I need to analyse the crash dump.
In Windows 2003 PC health helped us to find the crash dump file.
How to get the crash dump file location in Windows 2008?

suresh
- 4,084
- 10
- 44
- 59
28
votes
2 answers
Hows does one prevent passwords and other sensitive information from appearing in an ASP.NET dump?
How does one prevent passwords and other sensitive data submitted to and received from ASP.NET web pages in IIS/ASP.NET dump files?
Steps to reproduce
Using Visual Studio 2010, create a ASP.NET MVC 3 intranet application.
Configure it to use…

bloudraak
- 5,902
- 5
- 37
- 52
24
votes
3 answers
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 block. The dump file was unusually large (1,5 GB --…

Martin Ba
- 37,187
- 33
- 183
- 337
23
votes
6 answers
Whats the main advantage and disadvantage of "do not keep activities" in android
One query I would like to have if anyone could answer it like: Do not keep activities options to be checked during testing android mobile application from developers options.
I used it in my application and found that my application behaves…

BlueBerry - Vignesh4303
- 587
- 1
- 13
- 36
22
votes
2 answers
How to change apport default behaviour for non-packaged application crashes?
We have an Ubuntu server deployed with apport enabled as shown.
~$ cat /proc/sys/kernel/core_pattern
|/usr/share/apport/apport %p %s %c
Unfortunately apport's behaviour in dealing with non-packaged application crashes is not entirely to our…

Jess
- 387
- 1
- 4
- 9