Questions tagged [crash-dumps]

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

718 questions
0
votes
1 answer

Heap corruption detection with Windows GFlags application

I'm trying to enable page heap for a small application using GFlags but for some reason it doesn't work. I've written a small C++ application that all it does is corrupt the heap memory: int* a; a= (int*)malloc(1); *a= 8888800; return 0; When…
user5326354
0
votes
0 answers

How to analyze this kind of crash log?

the crash log seems crash in line 90 but in my codes , it seems like line 90 will never can make a crash happen (the sessionManager is the AFHTTPSessionManager), any clue to fix this kind of crash ?
ximmyxiao
  • 2,622
  • 3
  • 20
  • 35
0
votes
2 answers

Need to capture crash dumps programmatically

I need to programatically(C#) generate crash dump. The only method i know is to subscribe to the event UnhandledException. However my handler does NOT get hit. Code follows: [STAThread] static void Main() { Application.EnableVisualStyles(); …
Sandeep
  • 57
  • 1
  • 8
0
votes
1 answer

Analyzing exception in crash dump

The client which uses my application gets crashes, so they sent me these two files WER178D.tmp.hdmp and WER1868.tmp.mdmp. I open first of it in WinDbg. Unfortunately I have no idea what to do here. I know this is way too broad of a question, but can…
Andrius Naruševičius
  • 8,348
  • 7
  • 49
  • 78
0
votes
2 answers

How can I symbolicate without archive but have .dsym files?

I have to symbolicate a crash report given to me, however I didn't create the initial archive that was sent to Apple. I do, however, have the .dsym files. Is there a way I can symbolicate the crash file? Thanks.
Aaron Bratcher
  • 6,051
  • 2
  • 39
  • 70
0
votes
1 answer

Snatching a crash dump on the user side and navigating it on the developer side

I have a program that has been built in "release with debug info" mode. Sometimes it crashes on the user side, but when I try to recreate it on my computer -- everything is fine. I'm looking for debug tool or something that would allow the user to…
Glinka
  • 483
  • 1
  • 3
  • 18
0
votes
2 answers

Unity, EXE Crash Report Analysing. No crash in Unity

I work on a Unity project since a few months. I have no error on console and the game launches in unity without any problem. When i build the game, and then click on the exe, the Game crash at start. I have a crash log with crash and output.log…
mad_mask
  • 776
  • 2
  • 10
  • 31
0
votes
2 answers

Can I use result of windbg analyse if I have some symbol warnings?

I am new in windbg and memory analize in windows. I try analize memory dump (crash dump) it's x64 system. After loading all symbols (my and microsoft) I type !analyze -v This is a part of output: ...... FAULTING_SOURCE_CODE:
Stepan Loginov
  • 1,667
  • 4
  • 22
  • 49
0
votes
1 answer

iOS application failed to resume how to fix it?

i have no idea to fix this issues , any idea? Incident Identifier: 778B453C-111C-4575-919E-0C73BDD679B4 CrashReporter Key: cc6fa311f4d178cd2a1c946ced641fab87e0181d Hardware Model: iPhone2,1 Process: PantipCafe [792] Path: …
RAGOpoR
  • 8,118
  • 19
  • 64
  • 97
0
votes
0 answers

What could be the reason of failing of mini-dump generation but successful generation of complete Windows memory dump?

I was testing for Windows SVVP (server virtualization validation program) test and I observe unexpected behavior. When I put 80 Gigs of storage for a 60 cores system, I am able to get the "Complete" memory dump. However, with same configuration, the…
user3243499
  • 2,953
  • 6
  • 33
  • 75
0
votes
1 answer

What is my role when creating the memory dump?

I am studying how to use MiniDumpWriteDump() method to create minidumps. After I read some articles, I got the feeling that all I can do is to provide some callback function and various flags to tell the OS what I want to dump. Then OS will collect…
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
0
votes
1 answer

What is the location of IntelliJ crash dump files?

If IntelliJ crashes, where is the location of dump file created? Nothing in "C:\Program Files (x86)\JetBrains\IntelliJ IDEA 2016.3\bin" found by me.
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
0 answers

only native call stack shown

My .NET application is crashing. Upon generating full crash dump using Debug Diag, dump file is created named after 'stackoverflow' and i guess there is a stack overflow exception with some thread. Doing crash dump analysis using Visual Studio 2015…
Sandeep
  • 57
  • 1
  • 8
0
votes
1 answer

How to tell if a dump file represents a crash

I have a dump file collected by an user experiencing a problem while running my C++ application, and I'm trying to figure out whether the application has crashed. From what I can see in the dump file, there is no exception or error indicating a…
SmacL
  • 22,555
  • 12
  • 95
  • 149
0
votes
1 answer

Windows stop creating dump when click on crashed application

I set registry values to make a crash dump (like here). It works great for small applications (few megabytes). When my application is huge, almost 2GB in ram memory and when it crashes, the dump file is created in specified directory. During dump…
LukaszTaraszka
  • 801
  • 1
  • 10
  • 26