crash-dumps

“Symbols can not be loaded” when trying to read dump

早过忘川 提交于 2020-01-01 05:01:08
问题 I have an application that sometimes causes a BSOD on a Win XP machine. Trying to find out more, I loaded up the resulting *.dmp file (from C:\Windows\Minidump), but get this message when in much of the readout when doing so: ********************************************************************* * Symbols can not be loaded because symbol path is not initialized. * * * * The Symbol Path can be set by: * * using the _NT_SYMBOL_PATH environment variable. * * using the -y <symbol_path> argument

How to enable core dump in my Linux C++ program [duplicate]

陌路散爱 提交于 2019-12-28 01:42:10
问题 This question already has answers here : How to generate a core dump in Linux on a segmentation fault? (12 answers) Closed 5 years ago . 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 where it is executed? Where this file is created, and what is its name? 回答1: You need to set ulimit -c . If you

How to get crash dump in Windows 8.1 without using WinDbg

一世执手 提交于 2019-12-25 03:00:43
问题 I have a user who is running one of my apps, and he is seeing the app crash. How can I get a crash dump from his computer without asking him to use WinDbg? I have read other questions, and this was easy to do in Windows XP using Dr. Watson, but it seems that option is not available in Windows 8.1 anymore. Other answer points to c:\Users\[user]\AppData\Local\Microsoft\Windows\WER\ReportArchive directory, but I only see WER files there. Any idea how to get crash dumps? Thanks. 回答1: I wrote a

cdb and windbg unable to load MiniDumps, but VS 2008 loads them fine

坚强是说给别人听的谎言 提交于 2019-12-24 16:34:18
问题 I am trying to build some automated crash dump analysis, but I cannot get cdb or windbg to load my crash dumps. They load just fine in VS 2008. When I run dumpchk.exe on the file, I get: Loading Dump File [c:\devx86\temp\ErrorDump.mdmp] User Mini Dump File: Only registers, stack and portions of memory are available ERROR: Memory range data only partially present in dump (RVA 0x1011F, size 0x94) **** DebugClient cannot open DumpFile - error 80070570 DumpFile is corrupt When I run cdb on the

Access violation in MiniDumpWriteDump when invoked out-of-process

痞子三分冷 提交于 2019-12-24 11:25:40
问题 The documentation of the MiniDumpWriteDump function states that MiniDumpWriteDump should be called from a separate process if at all possible, rather than from within the target process being dumped. So I wrote a small MFC crash handler program that does just that. I followed the advice in this SO answer by Hans Passant, i.e. I am passing the value of the exception pointer from the crashing program to the crash handler program even though the exception pointer is not valid in the context of

Kernel oops Oops: 80000005 on arm embedded system

拟墨画扇 提交于 2019-12-23 21:11:41
问题 Please help me to solve this Oops. I use a 1 milli sec high resolution timer and installing it as a seperate module with "insmod". This fires every 1 ms and i have to do some task with this timer interrupt. There are other processes which does image transfer and i see ethernet driver interrupt appearing to send the image. This enet interrupt is having some high priority and looks like it is delaying the 1 ms timer interrupt above, but i am not sure. I see the below Oops after running test for

iOS game crashes after pressing Share button only on iPad

这一生的挚爱 提交于 2019-12-23 07:07:07
问题 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 simulators running iOS 8.2. Here is the symbolicated crash report: https://www.dropbox.com/s/yyo4ouniegt6s0e/dotSports.crash?dl=0 In addition: This is from the output box in Xcode when taking the actions to produce the crash. *** Terminating app due to

iOS app rejected, trying to symbolicate crash log

↘锁芯ラ 提交于 2019-12-23 06:58:24
问题 I have read the other posts that pertain to this but the suggestions there do not seem to have worked for me. I submitted my first iOS app to the App Store and got rejected because it crashed. (It runs fine on all the Xcode simulators as well as my iPad Mini.) They sent me two crash logs, which I am now trying to symbolicate using Xcode, as described in Apple documentation: Connect an iOS device to your Mac Choose "Devices" from the "Window" menu Under the "DEVICES" section in the left column

Detect/Redirect core dumps (when a software crashes) on Windows

﹥>﹥吖頭↗ 提交于 2019-12-23 05:48:05
问题 For my work, I need to create a service that will detect an abnormal program termination and, instead of displaying a message to the user (default behavior), send the generated core dump to a remote server. I'm pretty sure this can be done, but I have absolutely no clue on where to start. Is there any API/registry settings for this ? Thank you. 回答1: One method is to install an Unhandled Exception Filter and then write a minidump from it which you can then upload to some place of your choosing

debug symbol issue

懵懂的女人 提交于 2019-12-23 05:41:53
问题 I am interested in which symbol file is used when we analyze dump file using Windbg or Visual Studio. Suppose my application is using a utility library, and the utility library has related private symbol file. When there is crash dump in my application, I need the symbol of the utility library to analyze the full call stack. But sometimes the build/runtime/debug environments are installed with different versions of the utility library -- which are (for sure) of different versions of utility