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
38
votes
17 answers

Solving random crashes

I am getting random crashes on my C++ application, it may not crash for a month, and then crash 10 times in a hour, and sometimes it may crash on launch, while sometimes it may crash after several hours of operation (or not crash at all). I use GCC…
speeder
  • 6,197
  • 5
  • 34
  • 51
38
votes
10 answers

Java ProcessBuilder: Resultant Process Hangs

I've been trying to use Java's ProcessBuilder to launch an application in Linux that should run "long-term". The way this program runs is to launch a command (in this case, I am launching a media playback application), allow it to run, and check to…
Matt D
  • 1,476
  • 3
  • 17
  • 26
38
votes
3 answers

Consistent Dispatch queue: com.apple.root.default-qos.overcommit crash

Anyone had experience diagnosing these crashes? I have a single user getting them consistently, and though I found an iOS related post, my app is not crashing on the same type of operation...
JeremyLaurenson
  • 979
  • 2
  • 11
  • 23
38
votes
6 answers

Possible causes of Java VM EXCEPTION_ACCESS_VIOLATION?

When a Java VM crashes with an EXCEPTION_ACCESS_VIOLATION and produces an hs_err_pidXXX.log file, what does that indicate? The error itself is basically a null pointer exception. Is it always caused by a bug in the JVM, or are there other causes…
sk.
  • 6,336
  • 5
  • 38
  • 46
37
votes
3 answers

5.1 Crash - A TaskDescription's primary color should be opaque

I have implemented material design into my app and it runs perfectly fine on < Android 5 but when I try to run on Android 5.0 and above I get the following in my logcat. FATAL EXCEPTION main Process com.test.test, PID 3195 …
Jack
  • 2,043
  • 7
  • 40
  • 69
36
votes
6 answers

iOS Crash without Error or Stack Trace

Having a hard time tracking down a crash in an iPad application. The difficulty really stems from the fact that there is no errors or stack trace present when the application fails. It simply goes away like Keiser Soze, "And like that, poof. He's…
MarkPowell
  • 16,482
  • 7
  • 61
  • 77
36
votes
9 answers

Android app crashes after SDK-tools update version (NoClassDefFound, tool version 22)

I have just updated my android SDK tools to the newly released version (tools version 22, platform tools version 17) java.lang.NoClassDefFoundError The .classpath file was modified. The update in added a line :
lopez.mikhael
  • 9,943
  • 19
  • 67
  • 110
35
votes
3 answers

.Net 4.0 Windows Application crashes in clr.dll under Windows Server 2008

I have a Windows application scheduled to run on a daily basis and fails intermittently as per the following log in EventViewer. Faulting application name: MyApplication.exe, version: 1.0.0.0, time stamp: 0x4d54829a Faulting module name: clr.dll,…
Rez.Net
  • 1,354
  • 2
  • 19
  • 28
35
votes
6 answers

During export of signed app, eclipse crashes

I have an android application that I exported a signed version perfectly on March 17, 2013. Then on March 19, 2013 I updated the Facebook SDK and Android SDK Manager, then tried to export my a signed version of my app again. First mistake. Now I've…
LJWilliamsIV
  • 1,164
  • 9
  • 13
35
votes
6 answers

Where to find android crash history

I've been experiencing a great deal of instability on my Verizon Galaxy S III, and I believe it's related to the WiFi driver, or at least something in the networking stack. I get daily full system crashes that cause soft reboots of the OS. In order…
CJ McAllister
  • 291
  • 3
  • 10
  • 20
34
votes
8 answers

core dump files on Linux: how to get info on opened files?

I have a core dump file from a process that has probably a file descriptor leak (it opens files and sockets but apparently sometimes forgets to close some of them). Is there a way to find out which files and sockets the process had opened before…
oliver
  • 6,204
  • 9
  • 46
  • 50
34
votes
0 answers

Getting DeadSystemException on Samsung SMG950U (Android 8.0.0) and SM 955 (Android 8.0.0)

I am working on a native android app & getting the following report in my Crashlytics but I am unable to figure the the exact reason for this. I have two activities SplashActivity and MapActivity in my app. There are lot of things going on in the…
Xc0d3r
  • 541
  • 4
  • 9
33
votes
1 answer

iOS 11. What the KVO_IS_RETAINING_ALL_OBSERVERS_OF_THIS_OBJECT_IF_IT_CRASHES_AN_OBSERVER_WAS_OVERRELEASED_OR_SMASHED is mean?

In the new iOS11, I get some strange exceptions. I do not understand why this is happening. In the previous iOS, there was no such exception. Log attached: Crashed: com.apple.main-thread 0 libobjc.A.dylib 0x180a5e7e8…
Mikhail S
  • 3,338
  • 3
  • 21
  • 34
33
votes
8 answers

VS2015 Crashes when I try to Publish

So, I am developing a Web Service, and at some point, my Visual Studio 2015 started to crash every time i right click project -> Publish. When I publish a project it gets deployed to Azure. I use git, so I undid all the changes to my last successful…
Mike
  • 421
  • 5
  • 16
33
votes
5 answers

Analyzing a crash in Windows: what does the error message tell us?

A small utility of mine that I made for personal use (written in C++) crashed randomly yesterday (I've used it roughly 100+ hours with no issues so far) and while I don't normally do this, I was feeling a bit adventurous and wanted to try and learn…
GRB
  • 3,982
  • 4
  • 27
  • 21