crash-dumps

how to resolve “failed to resume in time” on iOS

China☆狼群 提交于 2019-12-23 04:08:42
问题 Incident Identifier: A664D7F0-B508-4D77-8052-3D15B7612921 CrashReporter Key: cc6fa311f4d178cd2a1c946ced641fab87e0181d Hardware Model: iPhone2,1 Process: iPORTALs [4155] Path: /var/mobile/Applications/EFCD0F88-675F-47E2-AFA9-9EC4D918881F/iPORTALs.app/iPORTALs Identifier: iPORTALs Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2011-01-24 18:58:22.908 +0700 OS Version: iPhone OS 4.1 (8B117) Report Version: 104 Exception Type: 00000020 Exception Codes:

how to resolve “failed to resume in time” on iOS

一世执手 提交于 2019-12-23 04:08:26
问题 Incident Identifier: A664D7F0-B508-4D77-8052-3D15B7612921 CrashReporter Key: cc6fa311f4d178cd2a1c946ced641fab87e0181d Hardware Model: iPhone2,1 Process: iPORTALs [4155] Path: /var/mobile/Applications/EFCD0F88-675F-47E2-AFA9-9EC4D918881F/iPORTALs.app/iPORTALs Identifier: iPORTALs Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2011-01-24 18:58:22.908 +0700 OS Version: iPhone OS 4.1 (8B117) Report Version: 104 Exception Type: 00000020 Exception Codes:

Azure crash dumps not appearing

戏子无情 提交于 2019-12-23 03:09:36
问题 The code below produces a crash dump when I run it in Azure development fabric, but not when I deploy it to the cloud. I have: Followed Microsoft's instructions (see below) Tested the credentials in Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString by uploading a blob. Waited for it to crash (about ten times). Stopped the deployment and waited half an hour. But I still cannot find anything in the storage account. I am targeting .Net 4 using VS 2010 Pro SP1 and deploying using its

Running iPhone crash Logs from testers on XCode

随声附和 提交于 2019-12-23 03:03:35
问题 When I'm running my app on my device using XCode and I have a crash it's easy tracking where it happened on code. However, when I deploy my ad-hoc version to testers and they have a crash, is there a way for me to load the crash on XCode as if it crashed on my computer, actually seeing the stack and the variable values ? Thanks 回答1: As far as I know, there is no known method to obtain a full core dump file for iOS apps that you can later load on GDB. Are you already asking your testers to

Crash reporting watchdog for when my application locks up on a customer's machine

半世苍凉 提交于 2019-12-22 09:18:40
问题 I'm working with a somewhat unreliable (Qt/windows) application partly written for us by a third party (just trying to shift the blame there). Their latest version is more stable. Sort of. We're getting fewer reports of crashes, but we're getting lots of reports of it just hanging and never coming back. The circumstances are varied, and with the little information we can gather, we haven't been able to reproduce the problems. So ideally, I'd like to create some sort of watchdog which notices

Is there a way to automatically include the console output with the crash log on ios

流过昼夜 提交于 2019-12-22 06:46:38
问题 The crash log returned when your app has an error on iOS is wonderful however it would be 100 times better if it contained the console output from when your app started as part of the log. Is there a way to automatically have that information in the crash log, or have a semi-automatic system that testers could use when sending in crash logs? 回答1: I think you might want to take a look at http://apphance.com. It's exactly what you are looking for - including capability of sending problem

LocalDumps registry key stopped working (Windows Error Reporting)

心已入冬 提交于 2019-12-22 06:29:40
问题 I set up the registry key, HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps as described on MSDN. I have a test program - a console program, compiled with Visual C++, that tries to dereference a NULL pointer before printing a message and exiting. The test program used to exit and dump a core file, but now it just exits. I get no core. I'm running Windows Server 2008 R2 Enterprise, SP1 on physical hardware. I don't know what changed. What could have changed that prevents WER

.net Application hanging. Weird crash-dump

两盒软妹~` 提交于 2019-12-21 06:18:46
问题 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

Make CrashDumps dump into same folder that app runs from

自闭症网瘾萝莉.ら 提交于 2019-12-20 07:36:25
问题 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 application look in it's own folder for any dmp files and then upload them for analysis if needed. I've got the appropriate registry keys for everything else but how do I set up the DumpFolder key to point back to whatever location my app is ran from? 回答1:

How to catch unhandled exception from .Net application with procdump (or similar)?

情到浓时终转凉″ 提交于 2019-12-20 01:44:13
问题 The long (boring) story Currently i have an application that leads to an exception on only one pc. After some digging around i could encapsulate the problem with a small sample application, but the true reason is still hiding. Due to the fact that on this pc is no Visual Studio installed nor we are able to do so i searched for another solution to find the true reason. In a first approach i stripped down my small application more and more by just carefully reading the exception message,