crash-dumps

Google Chrome - Crash Dump Location

白昼怎懂夜的黑 提交于 2019-12-03 23:18:23
I'm trying to debug a page in a web app that keeps crashing Chrome ("Aw, snap!" error). I've enabled/disabled automatic crash reporting, tried logging with google-chrome --enable-logging --v=1 , (as well as various levels of verbosity), and all I get is a "crash dump ID" in the chrome_debug.log chrome://crashes Shows all of the dump IDs, but no actual dump file I see other questions referring to reading the dump files, but I can't find the dump files themselves (just the ID). Grepping for the crash ID in /tmp and ~/.config/google-chrome/ turns up nothing, but the ~/.config/google-chrome/chrome

.net Application hanging. Weird crash-dump

ぃ、小莉子 提交于 2019-12-03 22:12:54
A production server has an application running 24x7, and sometimes it starts consuming near 50% of CPU. I couldn't reproduce it locally, but I did a Memory Dump with adplus. The server has Windows 2008 Server 64bits, .NET 3.5. The application listens to a MSMQ and has a thread pool to execute operations, when I did the memory dump it was supposed to be running nothing, but it was still consuming CPU. Below is the Dump. Do you know what can be happening?? It's weird that the slow thread also says GC Disabled! What's that? It's weird I've an ASP.NET app in the same server and sometimes happens

Auto upload crashlogs iPhone

♀尐吖头ヾ 提交于 2019-12-03 21:41:56
Quick question for you. Will I have any issues with the Appstore approval process if my app periodically checks for crashlogs and uploads it to a server? Is this even possible? If not, can I have something like a global exception handler and make my app terminate gracefully, while being able to upload exception messages to the server? Thanks, Teja For apps distributed through the App Store, Apple will deliver the crash logs to you through iTunes Connect. For Ad-Hoc builds, you will need to have your users send you the crash logs. When the iPhone is synchronized with iTunes, it copies all the

Whats the main advantage and disadvantage of “do not keep activities” in android

◇◆丶佛笑我妖孽 提交于 2019-12-03 18:49:49
问题 One query I would like to have if anyone could answer it like: Do not keep activities options to be checked during testing android mobile application from developers options. I used it in my application and found that my application behaves inappropriately and crashed when I switched ON Do not keep activities in android. My questions were few : 1: How much this option will affect mobile applications? 2: What exactly does this do? It sounds like an app killer,I notice in the Developer Options

Getting started with dump file analysis

六眼飞鱼酱① 提交于 2019-12-03 15:10:39
I am working with a legacy VB6/COM application which sometimes causes Windows 7 to crash. I have now generated a .dmp file of one of these crashes using the ProcDump tool from Sysinternals. However, I have never worked with dump files before. Which resources would you recommend for getting started with dump file analysis? Some more links that might be usefull WinDBG and tools: https://developer.microsoft.com/en-us/windows/hardware/download-windbg .Net extension for WinDBG: https://docs.microsoft.com/en-us/dotnet/framework/tools/sos-dll-sos-debugging-extension There are some books such as "

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

让人想犯罪 __ 提交于 2019-12-03 13:35:46
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 when starting the debugger. * * using .sympath and .sympath+ * ******************************************

Debugging dump of 32-bit process captured on 64-bit machine

无人久伴 提交于 2019-12-03 12:30:05
问题 I recently received a 64-bit crash dump from a customer. Our processes are all 32-bit, but the customer's machine is running x64 Server 2008. Visual Studio (both 2008 and 2010 Express) is telling me that I have to use the 64-bit version of MSVSMON.EXE , which I can't because I don't have a 64-bit machine. I'm pretty sure there's a way to do this in WinDbg, but I find WinDbg to be hostile. Is there any way to debug a 64-bit dump on a 32-bit machine, preferably using Visual Studio? 回答1: You

Generate / create mdump files for in my app

醉酒当歌 提交于 2019-12-03 09:45:13
问题 Im looking for a way to generate minidump files in my applications simular to what ProcDump does but prefarably with code and not having to extract a 3dparty tool to do it. The main reasons for not wanting to use ProcDump is: 1) Size of the binary would increase greatly ( This is a problem because my apps are freeware, and bandwith is not free). 2) Feels dirty. 3) No way i can port that app to run inn windows mobile. My requirements are: 1) Ability to generate mdump files in a fatale crash. 2

What actions do I need to take to get a crash dump in ALL error scenarios?

好久不见. 提交于 2019-12-03 09:19:41
问题 We're on Windows and we want to get a crash dump (possibly using MiniDumpWriteDump ) for all scenarios where our application exit's unexpectedly. So far we have identified, and set up, the following: SetUnhandledExceptionFilter for unhandled exception (Win32 as well as "normal" C++ ones.) _set_invalid_parameter_handler for the CRT invalid argument handling _set_abort_behavior plus a SIGABRT handler to account for calls to abort() Is there anything we missed? (Modulo some code non-legitimately

Accessing iOS crash report from iOS app

半腔热情 提交于 2019-12-03 08:51:14
问题 There are quite a few tutorials on how to access crash reports using a computer, but what I would like my app to do is scan for crash reports (from itself) on startup--so that users can use my app to send me their reports. Is this possible? 回答1: PLCrashReporter is an open source crash reporting framework that can be added to an iOS App. Reports are generated in protobuf encoded format, which should allow an app to upload these reports to a server. 回答2: Take a look at these few resources that