Questions tagged [crash]

A crash is the result of an unrecoverable error that causes the program to stop completely.

A crash is the result of an unrecoverable error that causes the program to stop completely. During software development, crashes can be avoided by implementing proper error and exception handling.

Another common source of crashes is improper memory management, especially for programming languages like or , that don't have a fully fledged automatic garbage collector, that detects no longer used memory automatically, and feeds it back as available.

13257 questions
50
votes
4 answers

C# 4.0 Compiler Crash

This code sample is not able to be compiled. Any work arounds out there? using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { using church = Func; …
Michael J. Gray
  • 9,784
  • 6
  • 38
  • 67
49
votes
3 answers

How do I use PDB files

I have heard using PDB files can help diagnose where a crash occurred. My basic understanding is that you give Visual studio the source file, the pdb file and the crash information (from Dr Watson?) Can someone please explain how it all works / what…
hamishmcn
  • 7,843
  • 10
  • 41
  • 46
49
votes
3 answers

App shutdown with EXC_RESOURCE, WAKEUPS exception on iOS 8 GM

Does anyone know what this kind of exception is on iOS 8? === from crash report === Exception Type: EXC_RESOURCE Exception Subtype: WAKEUPS Exception Message: (Limit 150/sec) Observed 206/sec over 300 secs Triggered by Thread: 14 Seems to only…
Coder
  • 491
  • 1
  • 4
  • 3
47
votes
3 answers

iPhone app under test crashes after a few days

I am new to making iPhone apps and this is my first attempt. I have made a simple app which has two buttons in it. One button opens a URL and the other opens a Pop-up window. I am yet to enroll as an apple developer and am testing my application on…
hs7624
  • 693
  • 2
  • 10
  • 20
46
votes
2 answers

In App Purchase Crashes on [[SKPaymentQueue defaultQueue] addPayment:payment]

My In-App-Purchases work. I present a ModalView with a "Buy" UIButton. You click the button and the In App Purchase goes through the process. You can even do it several times in a row. The problem occurs if you open the Modal View, then close the…
Chris
  • 5,485
  • 15
  • 68
  • 130
45
votes
2 answers

Eclipse continue crashing

today my Eclipse continue crashing and show me this message: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f9d6dfd4c91, pid=5739, tid=140316573566720 # # JRE version: 7.0_25-b30 # Java VM:…
Luca Panteghini
  • 2,657
  • 3
  • 21
  • 27
43
votes
8 answers

Google Maps Android API v2 - Sample Code crashes

I'm trying to get the sample code of Android 'Google Maps Android API v2' working. I get the project built without errors. However, when I try to run the app on my Galaxy Nexus (connected with usb to my laptop), the app crashes immediately. I…
alexx
  • 603
  • 1
  • 6
  • 8
42
votes
4 answers

Native crash of RenderThread with signal 6 (SIGABRT)

Updates! See below Situation We're having a difficult to diagnose issue with our app. When we attempt to use an intent to have the camera app return a picture, we receive a low-level crash situation that we are unsure how to debug. This is occurring…
Jaymes Bearden
  • 2,009
  • 2
  • 21
  • 24
42
votes
7 answers

DatePicker crashes on my device when clicked (with personal app)

Edit : I checked that the issue only appears when the phone is set with "French" language. I'm currently building my own app and I have an issue when using the DatePicker widget on my phone (debug mode phone : Samsung S5). The error gather is :…
Alexandre
  • 1,259
  • 2
  • 15
  • 25
41
votes
1 answer

How to track down cause of SIGABRT

I'm showing the code to this problem for example purposes, but really my question is: how am I supposed to track down and understand SIGABRT errors? I read this question: sigabrt with no error message, however I don't think this pertains to my…
owen gerig
  • 6,165
  • 6
  • 52
  • 91
40
votes
0 answers

WebView native crash: libwebviewchromium.so "Operation not permitted" - ILL_ILLOPC

I'm seeing a lot of crash reports similar to the crash below, and I'm at a loss for how to diagnose the issue. Crash heading in Google Developer Console: Native crash at /data/app/com.google.android.webview-1/lib/arm/libwebviewchromium.so in …
Mark McClelland
  • 4,980
  • 4
  • 35
  • 48
40
votes
4 answers

How do I debug a tab crash in Google Chrome

We have a single page application that randomly crashes the whole browser tab. I observed the memory for more than an hour but it wasn't increasing and everything looks just fine. Than out of a sudden after some more time passes, the tab crashes. I…
Christoph
  • 26,519
  • 28
  • 95
  • 133
39
votes
6 answers

How to handle or avoid a stack overflow in C++

In C++ a stack overflow usually leads to an unrecoverable crash of the program. For programs that need to be really robust, this is an unacceptable behaviour, particularly because stack size is limited. A few questions about how to handle the…
Ralph Tandetzky
  • 22,780
  • 11
  • 73
  • 120
38
votes
2 answers

Atos cannot get symbols from dSYM of archived application

I have a crash report from BugSense, so I have information on the memory location of crashes but they are not symbolicated. Also Bug Sense does not send traditional crash reports but still gives me a bugtrace. So I am trying to use Atos to get the…
Jason
  • 14,517
  • 25
  • 92
  • 153
38
votes
3 answers

iOS crash report "unexpected start state" exception?

I have found several crash reports with the reason unexpected start state. My code looks like this: NSRange range = [content rangeOfString:@""]; if (range.location != NSNotFound) { NSString *htmlStr = [content…
tom lider
  • 419
  • 4
  • 4