sigabrt Questions
1
Solved
I am running a Node program that does a long running data migration job. After an hour is process, Node process terminates by Abrt daemon and creates core dump.
Looking into the reason I see this:...
1
I am trying to debug a crashing bug reported by many of my users in the field. All show me the same stack:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x00000000000000...
Borges asked 25/10, 2015 at 6:25
2
Solved
The magic incantation
LD_PRELOAD=/lib/libSegFault.so someapp
runs someapp with libSegFault.so providing backtrace information on a SIGSEGV as described in many different places.
Other than usin...
Chumash asked 9/9, 2013 at 20:27
2
Solved
I've been trying to build my game for iOS for a week now and figured I'd just ask for help. I've got it working on Android and Windows Phone.
Details:
Version : Unity 5.1.1p2
I'm building a Devel...
Md asked 28/6, 2015 at 6:22
3
Solved
My iOS application just crashed with a NSRangeException on -[NSManagedObjectContext save:]. Nothing else helpful anywhere to be found. How am I supposed to fix this? I don't get any memory address ...
Lovmilla asked 22/4, 2015 at 9:54
1
There is a structure in my program
struct List
{
int data;
List *next;
};
and a function of adding an element to the tail of the list:
void addL(List* &tail, int dat)
{
if (tail==NULL...
2
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 on every other device I've tried including my Nexus 7 (2) with 4.4.2
I don't think it's ...
Stewart asked 8/5, 2014 at 12:17
1
i'm writing an android program for visualizing the audio signal. The main activity is:
package com.example.soundvisualizer;
import android.os.Bundle;
import android.app.Activity;
import android.co...
Durrell asked 22/3, 2014 at 11:40
3
Solved
I wrote this innocent piece of code, and results in such an evil error:
static char * prefixed( char * pref, char *str ) {
size_t newalloc_size = sizeof(char) * (strlen(pref) + strlen(str));
cha...
Cattle asked 1/11, 2012 at 16:19
9
Solved
I'm trying to recover an app that I accidentally deleted and managed to do it through the organizer, however, now when I try to run it on the simulator or iphone, it crashes with an error popping u...
Espy asked 21/10, 2011 at 21:44
4
Solved
When I was debugging my iPhone app, I got an error and the app got crashed. I have added a exception break point but it didn't point any where in the code and crashed in main.m.
Here I am adding t...
1
Solved
I know that both raise(SIGABRT) and abort() methods will send a SIGABRT signal to itself. But there are some difference between those 2 functions. (e.g - abort() function unblocks the SIGABRT signa...
3
Solved
First time I launch the app, everything seems to run fine. I'll hit the stop button, do some work and when I go to launch it again, it seems to crash before it can even load anything.
Press stop, ...
Livvy asked 19/4, 2013 at 21:35
3
Solved
My app crashes on the iPhone 6.1 Simulator. It crashes on startup, but not every time. In fact, I can't get it to crash two times in a row. Sometimes it's every other time I hit run, sometimes it's...
1
My app loads and runs fine in both the iPhone and iPad simulators (5.0, 5.1, 6.0, 6.1). On the the 3rd attempt "EXACTLY" I receive a SIGABRT error with a "(lldb)" log output. Here's the output from...
Scumble asked 7/6, 2013 at 23:14
2
Solved
I've got this code trying to run a simple set of images in a cycle. All I have in the app is one UIImageView declared in my View Controller's .h file:
@property (strong, nonatomic) IBOutlet UIImag...
Elwell asked 7/3, 2012 at 22:51
5
Solved
I am trying to compile and run a simple tutorial for an Objective C app using Interface Builder. I am using Xcode 4.0.2 and simulating on iOS (iPhone) 4.3
http://www.switchonthecode.com/tuto...
Countryman asked 9/6, 2011 at 14:16
1
Solved
Application is made in Interface builder. Seperate storyboards for iPhone and iPad. Project runs and works properly on iPhone Simulator, iPad Simulator, iPhone 4 with newest iOs, but I get this err...
Vacillation asked 12/12, 2012 at 15:49
3
Solved
I have a std::vector<double> In which GDB shows it containing these values:
Wph <5 items> vector<double>
[0] 10.750281685547618 double
[1] 0.0053087812248281997 double
[2] 4.2...
3
When running my application in the iPad Simulator using iOS 5, if there is a SIGABRT error, it doesn't show the full stack trace as it did in iOS 4.3
Also the debugger doesn't stop in the line whe...
3
Solved
I am creating a simple RSS application and I am not that good in Objective-c. The application will always build successful and there is no errors or warnings, in the UITableView which reads t...
Decker asked 17/3, 2012 at 13:4
1
Solved
I've been using Xcode to develop iPhone Apps for a couple of years now. In the last couple of months I've updated to Xcode 4.2 for iOS 5 development.
On previous versions of Xcode I've found it v...
1
Solved
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 mess...
Vertigo asked 9/11, 2011 at 21:42
3
I am trying to do an application where you press a button then a UIAlertView comes up and there is a UIView inside it with 3 custom button. So far everything work. When i click on one of the 3 butt...
Savoie asked 24/2, 2011 at 16:45
1
Solved
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 T...
© 2022 - 2024 — McMap. All rights reserved.