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
-1
votes
1 answer

Retrieve callstack of Windows Minidump file

I have a minidump file from a crashing application on windows system at a customer. We like to know: Which application crashed What function threw the exception Line number if available (Just for early crash envestigation) What I'm trying to…
RvdK
  • 19,580
  • 4
  • 64
  • 107
-1
votes
3 answers

Memory corruption during string tokenizing

I am facing memory corruption and crash when doing a string tokenize. The crash is not occuring in the first time of processing . It takes more than an hour to crash. The problemmatic wchar_t *query = new wchar_t[inQry.length() + 1]; …
Sel_va
  • 588
  • 5
  • 25
-1
votes
2 answers

Getting CPU cycles from user mode dump

Process Explorer has columns for CPU time (down to milliseconds) and CPU Cycles. For WinDbg I am aware of the !runaway command, also !runaway 7 for more details, but it shows CPU time only. Are the CPU cycles also available somehow in a user mode…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
-1
votes
2 answers

Does a crash dump file need the local file it was operating on at time of crash?

I am analyzing a crash dump file which crashed when it was loading or saving a certain (local) data file. The call stack shows it had executed loading that file at the time of crash. I am wondering if I need to have this data file along with the…
zar
  • 11,361
  • 14
  • 96
  • 178
-1
votes
1 answer

How to find the fault offset from faluting IP

I have the following information regarding a application crash, I want to know the fault offset, because given a fault offset, we have a tool which can determine the line of source which caused the crash. The faulting module is a COM dll Exception…
user2101801
  • 719
  • 2
  • 8
  • 20
-1
votes
1 answer

Mysql not staring when innodb is enabled

I am using Centos 5 with mysql version 5.5.30. Everything was working fine until the abrupt shutdown. It crashed mysql and am getting the following error (in mysql error log file) when starting it normally. If I disable innodb (from my.cnf), it…
-1
votes
1 answer

Windows Store App crash dump analysis

I downloaded the Windows Store App crash logs and I got a .cab file which I decoded with the help of windbg. But the issue is that I don't know how to analyse these logs. DEFAULT_BUCKET_ID: WRONG_SYMBOLS PROCESS_NAME: …
-1
votes
1 answer

Need help on iphone crash log. Any experts around?

my iphone app crashes unexpectedly and looking at the crash log I can't tell where my code is doing something wrong. All I get in the stack are calls to the framework it's self. Any help? please! this is the link to the crash log (rather than copy…
nico
  • 9,668
  • 8
  • 26
  • 28
-2
votes
1 answer

macOS crash dumps equivalent in Windows world

Are there any equivalent of mac OS crash dumps in Windows world? In case of SIGSEGV on macOS I can take process dump from ~/Library/Logs/DiagnosticReports and using atos tool I can get exact place of all addresses from crash dump in my source…
Vlad
  • 2,090
  • 3
  • 21
  • 37
-2
votes
2 answers

View executed sql statements from a crash dump

How can I view executed SQL stored procedures from a memory crash dump of a C# .net application?
DBK
  • 403
  • 4
  • 13
-2
votes
1 answer

API which creates full crash dump

I would like to know if there is any API available which would create the full crash dump. Currently, i'm using the MiniDumpWriteDump() API with MiniDumpWithFullMemory. But, I am not getting much information to analyze from the dump created.
-2
votes
1 answer

iOS game crashes after pressing Share button only on iPad

My iOS game crashes after the share button is pressed. This button then gives the users the option to post/send a pre-written text line and a link to the app to Twitter, FB, Mail, Messages,etc. I am able to replicate the crash on the all iPad…
-2
votes
1 answer

How to read the application data of a Minidump with full Application data for a Visual C++ application?

I have a application which has been gone into hang state. this application is really a combination of three different exes. UI.exe, core.exe, core.dll. all of these are basically built on VC++. so when i look into the application logs i can see…
Saravana
  • 595
  • 1
  • 6
  • 15
1 2 3
47
48