sigabrt

Does the stack get unwound when a SIGABRT occurs?

Hi, Does the stack get unwound (destructors run) when a SIGABRT occurs in C++? Thanks. ...

Receiving SIGABRT error when launching TTPhotoviewController in iPhone

Hi there, Well im creating an iPhone application which contains some features like Cycle routes and a Photoviewer. For these Cycle routes im useing the Cloudmade api, and for the PhotoViewer im useing Three20's TTPhotoviewcontroller. These Cycle routes map works perfect but i think it has todo something with the errors im getting. I ...

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 from crash log: Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x00000000, 0x00000000 Crashed Thread: 0 Stack trace for Thread 0 Thread 0 Crashed: 0 libSystem.B.dylib 0x3293f98c 0x328c1000 + 518540 1 libSystem.B.dy...

Terminating app due to uncaught exception / / SIGABRT // C++ please help!

I have just finished one of my apps when I got this message. I cannot for the life of me work out what is wrong. (gdb) continue 2010-02-26 14:05:51.443 BrainTester[2638:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] was unable to load a nib ...

SIGABRT on any UIView touch

Hi. I'm afraid no amount of Googling has been able to save my hyde on this. I seem to be getting SIGABRT error anytime I touch the screen of the phone, on any UIView. The debugger console posts this error before the SIGABRT: .... [310:207] *** -[UIView _exclusiveTouchView]: unrecognized selector sent to instance 0x14c0c0 .... [310:2...

SIGABRT error when running on iPad

Hello, all. I've been banging my head for a few hours because of this problem. I have a universal project that's a mix of iPhone and iPad projects. I put these codebases together into the universal project and, after a lot of "#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 30200" checks, got the project to run in both the iPhone (OS 3.0 to 3.1....

objective-c : iphone programming error (SIGABRT)

this is the error show in console : objc[1589]: Class Account is implemented in both /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0.sdk/System/Library/PrivateFrameworks/Message.framework/Message and /Users/hugohnery-garon/Library/Application Support/iPhone Simulator/4.0/Applications/E6874214-2DFA-4446-...

Strange SIGABRT error.

Hi, I was trying to make a program but, when add sprintf to the equation, I get the following error: Program received signal: "SIGABRT" My sprintf is written as follows: int i; int g; char b[6]; sprintf(b, "%d", i*g); If you need to see the whole code here it is (but you probably don't, just in case though): #include <stdio.h>...

When does a process get SIGABRT (signal 6)?

What are the scenarios where a process gets a SIGABRT in C++? Does this signal always come from within the process or can this signal be sent from one process to another? Is there a way to identify which process is sending this signal? ...

Why would one crash log symbolicate and not another?

I have two crash logs from a iPhone application in XCode Organizer. Both occurred within 20 minutes of each other, on the same device, running the same build of the application. While one has been symbolicated the other has not. The unsymbolicated log has type and codes: Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x00000000,...

strcpy in a struct gives SIGABRT

Hi, I'm currently working on an FTP client written in C, and it's working pretty good. I was successful in writing a function that connects to an FTP server and logs in with a username or password, but I'm having a problem with returning errors. I have setup a struct FTPError {}; with 3 fields: int An error code int An FTP error domain...

NSMutableArray - App runs in simulator but not on device

My app runs fine in the simulator, but when running on the device, it terminates with SIGABRT. I have narrowed it down to the following code: - (void)loadImage { int imageNumber = currentImageNumber; // check to see if the image has already been downloaded. // if not, get it and add it to an array if ([imageData count] < totalNumberOfIm...

Weird SIGABRT (unrecognized selector sent to instance) when using UIAlertView

I've been bashing my head in with this one for the past half hour, so I thought I'd ask my friends from Stack Overflow for some wisdom. I've got a tab bar application with a view controller at the root, and passing off the views to other xibs. I created a custom XIB and added its view controller class (MoreViewController) as an External...

iPhone App crashes on iPad (only)

Hi! I am making an app where the user gets daily book recommendations from an online database. This all works just fine on iPhone and iPod Touch, but crashes (SIGABRT) on iPad on launch (default.png is shown first). The error that is traced in the console is "Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NS...

C Realloc error - "Assertion `ptr == alloc_last_block' failed!"

I'm writing a function in C that takes in a linked list and a predicate and returns an array containing all values of the linked list satisfying this condition. Here's the function: void **get_all_that(list_t *l, int (*pred)(const void *)) { void **vals = NULL; int i = 0; // Number of matches found const size_t vps = sizeof(...

Process terminated by signal 6, core shows kind of loop in libc

Hi On analysis of the core of a process (terminated by signal 6), on LINUX, stack bt shows : Core was generated by `/opt/namsam/pac_rrc_qx_e1/bin/rrcprb'. Program terminated with signal 6, Aborted. #0 0x0000005555ffb004 in epoll_wait () from /lib64/libc.so.6 (gdb) bt #0 0x0000005555ffb004 in epoll_wait () from /lib64/libc.so.6 #1...

NSFileManager fileExistsAtPath: crashes with SIGABRT on iOS4.1, why?

Here is the code I am using: NSFileManager* defaultMgr = [NSFileManager defaultManager]; if (![defaultMgr fileExistsAtPath:path]) { return nil; } Where path is a url to a file on the system like: "file://localhost/private/var/mobile/Applications/blahblahblah" This crashes with SIGABRT when the call to fileExistsAtPath: is made. The...