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.

learn more… | top users | synonyms

147
votes
17answers
48k views

How do I obtain crash-data from my Android application?

How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running ...
108
votes
19answers
4k views

What is the easiest way to make a C++ program crash?

I'm trying to make a Python program that interfaces with a different crashy process (that's out of my hands). Unfortunately the program I'm interfacing with doesn't even crash reliably! So I want to ...
80
votes
22answers
34k views

How to generate a stacktrace when my gcc C++ app crashes

When my c++ app crashes I would like to generate a stacktrace. I already asked this but I guess I needed to clarify my needs. My app is being run by many different users and it also runs on Linux, ...
40
votes
3answers
721 views

Is this “should not happen” crash an AMD Fusion CPU bug?

My company has started having a number of customers call in because our program is crashing with an access violation on their systems. The crash happens in SQLite 3.6.23.1, which we ship as part of ...
39
votes
4answers
1k views

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 { ...
36
votes
16answers
3k views

Is there any way a C/C++ program can crash before main()?

Is there any way a program can crash before main()?
26
votes
5answers
3k views

Good crash reporting library in c#

Does anyone know of a good crash reporting library for C#? In C++ there is CrashRpt available, so I'd like something along those lines. Ideally I'd like the library to zip up general information ...
24
votes
16answers
2k views

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 ...
21
votes
12answers
2k views

Do Java programs ever crash?

I am a c++ programmer , I know little bit about java. I know that java programmers do not have to work with memory directly like C++. I also know that most crashes in C++ appliations are due to ...
19
votes
15answers
11k views

iPhone crashing when presenting modal view controller

I'm trying to display a modal view straight after another view has been presented modally (the second is a loading view that appears). - (void)viewDidAppear:(BOOL)animated { [super ...
18
votes
39answers
3k views

Have you ever crashed the compiler?

Everyone (at least everyone who uses a compiled language) has faced compilation errors but how many times do you get to actually crash the compiler? I've had my fair share of "internal compiler ...
16
votes
17answers
2k views

Is “Dying is Awesome” preferred?

Recently I attended Jeffrey Richter's training courses about .NET. He mentions one strategy of coding "Dying is awesome". That is, don't write "catch (Exception ex)" even at the root of program or ...
15
votes
2answers
437 views

StackOverflowException in .NET 4

The following code works fine until I upgrade to .NET 4 (x64) namespace CrashME { class Program { private static volatile bool testCrash = false; private static void Crash() ...
14
votes
7answers
1k views

Are disk sector writes atomic?

Clarified Question: When the OS sends the command to write a sector to disk is it atomic? i.e. Write of new data succeeds fully or old data is left intact should the power fail immediately following ...
14
votes
4answers
7k views

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?) ...
13
votes
3answers
2k views

iPhone crash logs say “Version: ???”

I'm developing an iPhone app and doing ad-hoc distribution for beta testing. My users are sending me crash logs that say this: Identifier: MyAppName Version: ??? (???) Code Type: ...
13
votes
5answers
4k views

What does 8badf00d mean?

Sometimes my iPhone application crashes with a weird crashlog, that reads exception code is 0x8badf00d. The stacktraces show random snapshots of app execution, but nothing suspicious. This happens ...
13
votes
10answers
3k views

Visual Studio closes all the time

My Visual Studio shuts down about once a day. Not gracefully either, it just disappears off the screen, process list, everything. No thinking, no warning, just poof its gone. This happens most ...
11
votes
3answers
317 views

Why does this HTML crash IE?

I have a page that causes IE 8 to crash. I've dumbed it all the way down to just the html/javascript that causes the crash. I know I'm going to have to do something different for displaying the page ...
11
votes
2answers
376 views

Resources about crash-safe and fault-tolerance programming

I like the LWN article "Crash-only software" and I would like to learn more about crash-safe and fault-tolerant programming. It is surprisingly hard to assure that the persistent state is consistent ...
11
votes
2answers
691 views

What is the cause for “panic: free from wrong pool during global destruction.” in Term::ReadLine::Gnu?

in https://rt.cpan.org/Ticket/Display.html?id=37194#txn-641389 I reopened a bug concerning a Perl crash in conjunction with the libreadline XS bindings. I attached the necessary debug information, but ...
11
votes
3answers
2k views

Do NSUserDefaults persist through an Update to an app in the Appstore?

Is this the case? Do NSUserDefaults get reset when you submit an update to an app on the App Store, or are they reset? My app is crashing when updated but not crashing when downloaded fully - so I'm ...
11
votes
9answers
2k views

How to extract debugging information from a crash

If my C++ app crashes on Windows I want to send useful debugging information to our server. On Linux I would use the GNU backtrace() function - is there an equivalent for Windows? Also, is there a ...
11
votes
3answers
9k views

Where is the Visual Studio 2008 Crash Log? [closed]

I have Visual Studio 2008 with SP1 installed and it is crashing when I'm using lambda expressions in the Moq Framework. At first I thought the problem was Resharper...but now that I have uninstalled ...
10
votes
4answers
294 views

How do I investigate the cause of a JVM crash?

One day ago, after few monthes of normal working, our java app starts to crashing occasionally with following error: # # A fatal error has been detected by the Java Runtime Environment: # # Internal ...
10
votes
3answers
147 views

C# Program runs fine, until minimized

I've never seen this issue before, and I'm not even sure if I'm posting in the correct place. My Co-worker wrote a C# program (windows), that includes a web control. In that web control are a bunch ...
10
votes
1answer
378 views

Delphi2007: Crash when continuing paused app in debugger

We often experience crashes when starting an app in the D2007 debugger, pausing it and continuing it (by pressing F9). E.g create a VCL app drop a TButton and a TEdit on the main form add this ...
9
votes
6answers
522 views

How to debug a crash that only occurs on application shutdown? (Delphi)

So, after some recent changes we discovered that one of our oldest applications is sometimes crashing on shutdown. This manifests itself either in the form of "Runtime error 216" messages or in a ...
9
votes
11answers
5k views

Visual Studio 2008 Crashes When Opening Project Properties

I have a multi-project .NET application which I am developing in Visual Studio 2008. If I try to open the project properties for one of my projects (to change settings or publish) Visual Studio ...
9
votes
2answers
9k views

IIS 6.0 Application Pool crash

Have a lot of troubles on production server. Some routing cause crashing of Application Pool with event id 1011: Event Type: Warning Event Source: W3SVC Event Category: None Event ID: 1011 ...
9
votes
2answers
5k views

Finding the crash dump files for a C# app

An app I'm writing always crashes on a clients computer, but I don't get an exception description, or a stack trace. The only thing I get is a crash report that windows wants to send to Microsoft. I ...
8
votes
1answer
3k views

Java 6 Update 25 VM crash: insufficient memory

For an update of this question - see below. I experience a (reproducible, at least for me) jvm crash (not an OutOfMemoryError) (The application which crashes is eclipse 3.6.2). However, looking at ...
8
votes
1answer
2k views

Eclipse CDT crashes java

I downloaded fresh Eclipse CDT, added a C++ project, and after a few minutes eclipse crashed. It said "javaw.exe returned -1", and Eclipse crashes silently. The .metadata/.log file sometimes contains ...
8
votes
7answers
2k views

JVM crashes under stress on RHEL 5.2

I've got (the currently latest) jdk 1.6.0.18 crashing while running a web application on (the currently latest) tomcat 6.0.24 unexpectedly after 4 to 24 hours 4 hours to 8 days of stress testing (30 ...
8
votes
8answers
789 views

How to crash the .NET common language runtime (CLR) in pure .net

There is a similar question targeting the Java VM but I haven't found a question for .net (please close and mark as duplicate if I was missing something). So - is it possible without nasty unmanaged ...
8
votes
7answers
4k views

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 ...
8
votes
4answers
688 views

How do I calculate the “cost” of a crash?

Background: Some time ago, I build a system for recording and categorizing application crashes for one of our internal programs. At the time, I used a combination of frequency and aggregated lost ...
7
votes
1answer
52 views

Can a git repository be corrupted if a command modifying it crashes or is aborted?

When playing around with git, I sometimes try out things, then abort commands which take too long (e.g. some git svn commands that hang during network problems). This got me thinking: Is it always ...
7
votes
3answers
128 views

How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java

How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java. PS: I am not talking of StackOverflowError Error in Java which gracefully shuts the JVM. I am talking of EXCEPTION_STACK_OVERFLOW in ...
7
votes
4answers
579 views

How do I debug a difficult-to-reproduce crash with no useful call stack?

I am encountering an odd crash in our software and I'm having a lot of trouble debugging it, and so I am seeking SO's advice on how to tackle it. The crash is an access violation reading a NULL ...
7
votes
1answer
3k views

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 ...
7
votes
1answer
691 views

MPMusicPlayerController: iPod stops sending notifications, when iPod App is terminated in background

I am using a music player property for iPod player controller. // .h @property (nonatomic, retain) MPMusicPlayerController *ipodPlayer; // .m ipodPlayer = [MPMusicPlayerController iPodMusicPlayer]; ...
7
votes
5answers
1k views

iPhone programming : weird error using a MKMapView

I'm working on an iPhone app, and I got this strange log sometimes when manipulating a map: ImageIO_Free: ptr 0xdf0f000 got double released??? (16384 bytes) If I countinue playing around, the app ...
7
votes
2answers
2k views

Why does keyboard-slide crash my app?

If I physically slide out the keyboard on my Moto Droid A855, it crashes my test app with the stack trace pasted below. I don't understand why? Also, if I start my app with the keyboard out, my app ...
7
votes
0answers
629 views

MapKit/Location Manager crashes app when unloading view

I has a bug where my application crashed "EXC_BAD_ACCESS" when I hit the back key on my navigation bar and the view unloaded that had a MapKit (mapView) and used the Location Manager. Tried for days ...
7
votes
5answers
202 views

how can exec change the behavior of exec'ed program

I am trying to track down a very odd crash. What is so odd about it is a workaround that someone discovered and which I cannot explain. The workaround is this small program which I'll refer to as ...
7
votes
4answers
8k views

Java VM: reproducable SIGSEGV on both 1.6.0_17 and 1.6.0_18, how to report?

EDIT: This reproducible SIGSEGV happens on a Linux machine with more than one proc and more than 2GB of mem, so Java is defaulting to the -server mode. Interestingly enough if I force "-client" ...
7
votes
5answers
2k views

Apple rejected me, no idea why, or how to fix it

so heres the story, Apple recently rejected my app, saying it crashed on their phones, (iPhone 3G and ipod touch 2g), and send me two crash logs. NEITHER of which I can make sense out of. Here they ...
7
votes
3answers
1k views

Handle a JNI crash

I have a dll that contains legacy C code, I call this dll via JNI, but sometimes the C code crashes and causes the JVM to terminate. Is it there a way to avoid JVM crash? Can I handle the JNI fault ...
7
votes
3answers
1k views

Cross-platform crash handler

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 ...

1 2 3 4 5 44