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
0 answers
Identical pending IRPs
I forced a complete kernel dump for an application that appears to be waiting on a deadlocked thread in a kernel driver. I believe I have identified the offending thread as it has 1920031 ticks (0:08:19:12.675) which is roughly how long the…

mitchellJ
- 734
- 3
- 9
- 32
0
votes
1 answer
How do I enable core dumps for daemon processes on montavista linux?
I am not sure if stackoverflow is the correct place for this, but since this is for embedded development, and I need core dumps, which are also for development, I figured that this was the best place to ask.
I am trying to enable global core dumps…

Seamus Connor
- 1,765
- 1
- 18
- 24
0
votes
1 answer
Exqueue shows only waiting worker threads on forced memory dump
I'm debugging a system hang/freeze issue by forcing a complete memory dump (ctrl + scrl + scrl method) and I don't understand some of the data.
When I run !exqueue 6 I see 6 Critical, 8 Delayed and 1 HyperCritical thread but each contains a similar…

mitchellJ
- 734
- 3
- 9
- 32
0
votes
0 answers
Stack trace with destructor call
I am finding it hard to debug an access violation issue in my code.
Trying to understand the stack traces and dump files i wanted to understand this.
If an access violation is happening in a destructor of a class,
say for example
abc::~abc()
{
int…

Deepak Selvakumar
- 643
- 7
- 24
0
votes
0 answers
Windbg- Crash dump
I have IIS crash dump of a .net web application. After doing dumpstack I got call stack:
00000000028fe8c0 000007fe9b6f2fe5 (MethodDesc 000007fe99e41878 +0x105 ABC.dll!Unknown), calling (MethodDesc 000007fef7634de0 +0…

Ramaprasad Upadhyaya
- 457
- 4
- 16
0
votes
0 answers
linux kernel: why kernel crash dump sometimes not generated
I'm developing a kernel module. My env is centos 7.1 and I can find crash dump under the /var/crash folder.
But not every crash will generate a crash dump under the /var/crash folder, which makes me miserable to debug.
I do not know why sometimes a…

Van Yu
- 129
- 1
- 11
0
votes
0 answers
How do I access crash dumps from Agentless Exception Monitoring?
I've just set up a test of Corporate Error Reporting (CER) using Agentless Exception Monitoring (AEM) running as part of System Center Operations Manager 2012 R2 (SCOM) on Windows Server 2012 R2 Essentials with Update.
In any case, I do have…

PerryC
- 1,233
- 2
- 12
- 28
0
votes
1 answer
Alternative to GFLAG.exe or registry setting
To get the crash-dump i used the below registry setting for windows 7 machine also tried gflags.exe.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps]
"DumpFolder"=hex(2):[path goes here in hex…

GAP
- 395
- 1
- 5
- 18
0
votes
1 answer
WinDbg skip all messages while debug dumps
I made powershell script that debug .dmp files with WinDbg.
Here is part when windbg runs:
$arguments = '-y srv*c:\symbols*https://msdl.microsoft.com/download/symbols -z ' + $dmpfile + ' -c ".ecxr; kc; q" -logo ' + $logfile
Start-Process…

Alexey O
- 35
- 5
0
votes
1 answer
EXCEPTION_ACCESS_VIOLATION with Problematic frame: #j
We have been getting the following hot spot error very frequently in recent past.
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000000020dcfe8, pid=5104, tid=5724
#
# JRE…

Nayan Sonthalia
- 237
- 1
- 4
- 22
0
votes
0 answers
Application hangs with Full page heap enabled
My Application crashes while closing a Dialog. I tried to debug the code and could not make any good conclusions from that. I took crash dumps and analyzed using the Debug Diag tool and got the report that it could be a Heap corruption in…

Anjeneya Murthy
- 7
- 4
0
votes
0 answers
How to interrupt a process for MiniDumpWriteDump
We want to trigger a Windows snapshot minidump from our application and use the MiniDumpWriteDump for this purpose. This is working fine, but it seems that the time of interruption for the process is some time after MiniDumpWriteDump is called. How…

Christopher Oezbek
- 23,994
- 6
- 61
- 85
0
votes
0 answers
CDB is unable to load dump file but VS 2013 loads it fine
I have built an automated crash dump analysis, but I can't get CDB to load a specific crash dump. It loads just fine in VS 2013. I'm using the Debugger Tool from the Windows Driver Kits 8.1 (6.3.9600.16384) which seems to be the latest one.
When I…

Steve Rousseau
- 93
- 10
0
votes
0 answers
In MAC 10.10.5 MyApp crashes
MyApp has crashed and I have collected the below crash log from that MAC book. As it is mentioned the application crashed at thread 3, I could not able to figure out what has happened,
I was suspecting it could be because of a NSTimer Lock and…

Saravana
- 595
- 1
- 6
- 15
0
votes
2 answers
detecting object causing memory leak in C#
How to detect objects causing memory leaks in .net. Is it possible to detect object causing memory leaks using crash-dumps?

Vikas Khartude
- 90
- 1
- 7