Top "Sigabrt" questions

SIGABRT is a Unix signal sent when a program abnormally stops, often leading to a crash.

How to read crash log? How to find why the app crashes in system library? What means EXC_CRASH (SIGABRT)?

I got an crash logs from a customer to figure why my app crash on her iPhone. Here some info …

iphone nsnumber sigabrt crash-log
Fatal signal 6 (SIGABRT) code=-6 on first launch

I am getting a Fatal signal 6 (SIGABRT) error when trying to run my app on a Nexus 10 with 4.4.2. It works …

java android android-4.4-kitkat sigabrt nexus-10
SIGABRT in malloc.c, what just happened?

I wrote this innocent piece of code, and results in such an evil error: static char * prefixed( char * pref, char *…

c malloc runtime-error sigabrt cgdb
[UIImageView _isResizable]: unrecognized selector sent to instance SIGABRT

I've got this code trying to run a simple set of images in a cycle. All I have in the …

ios uiimageview nsmutablearray sigabrt
iPhone app not starting on simulator, no errors

I'm having a problem where my (simple) iOS app builds fine, says running but on the simulator I just get …

iphone xcode xcode4 sigabrt xcode4.3
C++11 std::thread join crashes with system_error exception and SIGABRT on Xcode 6?

Here is a simple thread trace program. The thread simply prints the first ten integers and then the "thread is …

c++ multithreading c++11 sigabrt
How can I fix this SIGABRT error with my app?

I am currently developing an app in Xcode 4 for the IPhone and I have com across this error, "Thread 1: Program …

iphone ios sdk sigabrt
Setting self.window.rootViewController causes SIGABRT

I am trying to do an application where you press a button then a UIAlertView comes up and there is …

ios uiview uialertview sigabrt
C++: vector<string> *args = new vector<string>(); causes SIGABRT

Pretty self explanatory. Here's the method that's causing the SIGABRT on the 'new vector' line: vector<string> * Task::…

c++ new-operator stdvector sigabrt
Can one use libSegFault.so to get backtraces for SIGABRT?

The magic incantation LD_PRELOAD=/lib/libSegFault.so someapp runs someapp with libSegFault.so providing backtrace information on a SIGSEGV …

stack-trace glibc sigabrt segmentation-fault backtrace