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
ARM: Unexpected Link Register Content on Crashing Thread
I have an iOS Crash-dump [EXC_BAD_ACCESS / KERN_INVALID_ADDRESS] with register-state and stack-memory for crashed thread.
register Contents are:
r0 = 0x00000000 r1 = 0x288bf020 r2 = 0x01e7afe0 r3 = 0xd7741000
r4 = 0x01e7b000 r5 =…

imagin
- 317
- 3
- 13
0
votes
1 answer
Getting detailed crash dumps from a hooked exe
I am trying find a problem with my program that is hooking into a game. This is
vc++. Basically I launch the program and then hook into it using SDL. When I run the code from VS2010, all works fine. But when I try to run from command prompt, my…

Wajih
- 793
- 3
- 14
- 31
0
votes
1 answer
How to get crashdumps of Store Apps when Hang
we have a windows 8.1 app in the windows store that sometimes crashes or hangs and we are unable to receive reports about hangs and crashs reported by the user via the store.
Collecting of telemetriy data is enabled in the store like mentioned in…

MartinoR
- 13
- 6
0
votes
1 answer
Make CrashDumps dump into same folder that app runs from
I've written an application that I want to have some level of automatic debugging for. I want to use windows error reporting to output the crash dump into the same folder that the app is running from. My idea here is that I can then have my…

Rubix Rechvin
- 571
- 3
- 16
0
votes
0 answers
Crazy stack trace
I've added app hang detector to my Windows app recently. All it does - crashes my app in case it detects that app hang.
In main window's procedure I update last time it was called.
In a separate thread I check if the last time was not updated during…

Alexander Dyagilev
- 1,139
- 1
- 15
- 43
0
votes
3 answers
How to get OS information from minidump crash?
I am trying to debug a minidump crash dump. How can I get to know the OS so that I may download related Microsoft Symbols?
I am using Visual studio and windbg.

anand
- 11,071
- 28
- 101
- 159
0
votes
1 answer
Clean up C:\Parallels\Plesk\etc\crashdumps
I'm running Plesk 11.5 on a Windows IIS7 machine.
Because I like to gain more disk space, I want to clean up the Parallels crash-dumps folders:
C:\Parallels\Plesk\etc\crashdumps
This Folder contains many files like:
plesksrv20130126_015742.dmp
All…

Max
- 111
- 1
- 7
0
votes
1 answer
How to dump my buffer when BSoD occurs, using C#
I've designed a logging service for multiple applications in C#.
Since the thinking of performance saving, all logs should be store in buffer first, and then write to log file when buffer is full.
However, there are some of extension cards (PCI /…

J.C
- 633
- 1
- 13
- 27
0
votes
2 answers
Cannot obtain debugging symbols for dumps
Trying to debug minidump in windbg/VS. Cannot get symbols for msvcr90 of version 9.0.30729.8387. Was trying to do .symfix. If I set sympath for my application symbols, I can get part of call stack which of my code, but not of msvcr. If I use…

cassandrad
- 3,412
- 26
- 50
0
votes
0 answers
Huge files in Visual Studio intermediate directory
Setting is a VS2010 solution with several (mainly c++) projects, solution is generated by cmake. Some of these projects are using Qt 5.2.1.
Recently I found some files in a corresponding intermediate directory which contain around 50 GBytes of data…

fiscblog
- 694
- 1
- 12
- 27
0
votes
0 answers
How to find the calling export in Windbg
My process is crashing in
0:000> ln 7813e7a2
(7813e725) msvcr80!_vswprintf_s_l+0x7d
(7813e7ac) msvcr80!vswprintf_s
Hi have loads of loaded DLLs, how do I find out in the dump what module called the offending print?

capsch
- 133
- 7
0
votes
1 answer
Which versions of windows generate local crash dump files through its error reporting? Which do not?
I'm writing a Java class to pull the version # of Windows from the registry, and then using this number to determine whether or not I need to create registry values to create a local dump. If not I need to know where to look for the dump files.…

user3768274
- 103
- 1
- 10
0
votes
1 answer
SOSEX mdt command wrong output
I found quite strange issue with sosex !mdt command.
I was investigating crash memory dump and was checking the value of System.Web.EtwTrace class static field using !mdt command:
!mdt System.Web.EtwTrace
[s]_traceLevel: int
...
AppDomain…

Nikolay Mitikov
- 523
- 2
- 16
0
votes
1 answer
How to Generate Crash Dump Analysis Report in Windows Environment
I am shipping a Software to end user. My Software consists of MFC and C#. when any process crashes i am automatically writing full dump to my logs folder. i would like to run another process which sniffs the log folder and analyzes the dump if any…

user3800376
- 3
- 2
0
votes
1 answer
Strange stack trace in Windows Phone 8
Hi I have a Windows phone app which is getting a number of crashes reported by the dev center.
I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class…

Peter
- 679
- 1
- 10
- 25