crash

Cross-platform crash handler

久未见 提交于 2019-12-18 14:44:54
问题 I'm looking for a cross-platform crash handler. Google Breakpad looks promising, but it is sorely lacking any documentation, and requires a reasonable amount of fiddling to actually get going. What is a better alternative? All I need is the ability to reliably record crash dumps, stack traces, and CPU information at the time of a crash. Alternatively, what is the experience using Google Breakpad? Has it been great or horrible? 回答1: Well, it turns out that google-breakpad is pretty nice after

gpus_ReturnGuiltyForHardwareRestart crash

非 Y 不嫁゛ 提交于 2019-12-18 13:15:14
问题 Application crashes in presentFrameBuffer (while running in foreground, no interruption occurring). It's not crashing in the first frame, it draws for a while then it suddenly crashes. I don't have exact steps to reproduce, but seems related to drawing something specific, still I have no openGL error reported trough the application, including one error check right before the presentFrameBuffer. If I add glFinish before the presentFrameBuffer will crash in the glFinish. Application is crashing

Debugging Python Fatal Error: GC Object already Tracked

我与影子孤独终老i 提交于 2019-12-18 12:56:09
问题 My python code has been crashing with error 'GC Object already Tracked' . Trying to figure out the best approach to debug this crashes. OS : Linux. Is there a proper way to debug this issue. There were couple of suggestions in the following article. Python memory debugging with GDB Not sure which approach worked for the author. Is there a way to generate memory dumps in such scenario which could be analyzed. Like in Windows world. Found some article on this. But not entirely answers my

Debugging Python Fatal Error: GC Object already Tracked

拜拜、爱过 提交于 2019-12-18 12:56:05
问题 My python code has been crashing with error 'GC Object already Tracked' . Trying to figure out the best approach to debug this crashes. OS : Linux. Is there a proper way to debug this issue. There were couple of suggestions in the following article. Python memory debugging with GDB Not sure which approach worked for the author. Is there a way to generate memory dumps in such scenario which could be analyzed. Like in Windows world. Found some article on this. But not entirely answers my

Tomcat dies suddenly

喜夏-厌秋 提交于 2019-12-18 12:14:18
问题 Trying to diagnose some bizarre Tomcat ( 7.0.21 ) and/or JVM errors on a 64-bit linux (CentOS) machine. I'm load testing our server application and tried hitting it with 100K messages. Launched jvisualvm and kept my eye on the heap the whole time. Everything was looking great* (see below) until I got to about 93K processed messages and then Tomcat just died. Ran a ps on Tomcat's PID number to confirm it was dead. Up until this crash: Load test had been running for about 90 minutes; should

S9/S9+ specific WebView device crash report

╄→尐↘猪︶ㄣ 提交于 2019-12-18 11:56:01
问题 We have been seeing crash reports coming into Google Play which are specific to the Samsung S9 (starqlesq) & S9+ (star2qlesq), both running Android 8.0.0: signal 11 (SIGSEGV), code 1 (SEGV_MAPERR) backtrace: #00 pc 0000000000a51278 /vendor/lib64/libllvm-glnext.so (_ZN13ShaderObjects17loadProgramBinaryEP15CompilerContextPvmP23QGLC_LINKPROGRAM_RESULT+1396) #01 pc 000000000099b500 /vendor/lib64/libllvm-glnext.so (_ZN15CompilerContext17loadProgramBinaryEPvmP23QGLC_LINKPROGRAM_RESULT+160) #02 pc

tessnet2 fails to load

﹥>﹥吖頭↗ 提交于 2019-12-18 11:48:24
问题 i'm using the tessnet2 wrapper to the Tesseract 2.04 Source on windows XP, configured it to work with x86. TessarctTest project main function contains: Bitmap bmp = new Bitmap(@"C:\temp\New Folder\dotnet\eurotext.tif"); tessnet2.Tesseract ocr = new tessnet2.Tesseract(); // ocr.SetVariable("tessedit_char_whitelist", "0123456789"); ocr.Init(@"C:\temp\tessdata", "eng", false); // List<tessnet2.Word> r1 = ocr.DoOCR(bmp, new Rectangle(792, 247, 130, 54)); List<tessnet2.Word> r1 = ocr.DoOCR(bmp,

WP7 App Crashes Immediately upon deploy

我们两清 提交于 2019-12-18 11:45:06
问题 Okay, so I'm developing an app for Windows Phone, and I can't seem to figure out what this issue is. To start with, I should say my application compiles with no warnings, no errors, nada. Looks like a charm. However, when I build the application to either the emulator, or any one of the two different WP7 devices I have on hand, the splash screen shows for a split second, and I'm returned to the home screen of the device. Looking at the output: 'taskhost.exe' (Managed): Loaded 'mscorlib.dll'

CoreTelephony crash

冷暖自知 提交于 2019-12-18 11:42:20
问题 I am receiving this backtrace from TestFlight regarding one interesting crash. As far as I understood, the application crashes at some point, when using CoreTelephony . Can this be possible of someone "calling" while the user is using the application? To my knowledge, the application is not using the CoreTelephony Framework . The Exception reason is SIGSEGV and the crash thread is 0 Thank You! PRIMARY THREAD THREAD 0 0 GPIreland 0x00113a1a testflight_backtrace + 238 1 GPIreland 0x00114704

Core dump in Linux

假装没事ソ 提交于 2019-12-18 11:10:28
问题 I want to create a core dump whenever my process crashes. Currently I am following this approach: Build a special "debug" version of the program using "-g" of gcc/g++. Execute "ulimit -c unlimited" Now we get the core dump whenever the program crashes. But I want to minimize the number of steps so that: Core dump should always get created. Even if it is "release" build. The user should not be asked to execute the command " ulimit -c unlimited " manually. That core dump's backtrace should be