On POSIX-compliant platforms, SIGSEGV is the signal sent to a process when it makes an invalid memory reference, or segmentation fault.

learn more… | top users | synonyms

1
vote
1answer
20 views

Linux kernel: sequence of events/paths before process coredump happens

When there is a segmentation fault and a process coredump is generated what are the sequence of events happening in kernel and user space (w.r.t Linux) ? Linux does support a sigsegv handler. How ...
0
votes
0answers
30 views

SIGSEGV error on gcc (Ideone, codechef) works fine on pc

This is the code for a problem on codechef. #include<stdio.h> inline int chkIsDiv(int n1, char* ptr) { int i=0, b=0; while(ptr[i] != '\0') { b=b*10+(ptr[i]-48); ...
-2
votes
0answers
70 views

How to solve SIGSEGV crash

I have got the following crash log from an user's device. How can I debug this? Incident Identifier: 603A7384-2B93-4489-91D3-D0AB86369FCB CrashReporter Key: ...
0
votes
1answer
28 views

Android SIGSEGV on Nexus 7 in libskia near SkCanvas::drawPosText -> AutoDrawLooper::next(SkDrawFilter::Type)+96

I've recently started getting this SIGSEGV in our app and am trying to figure out the cause or a work-around. Our app is Java only, we do not use the NDK so we aren't corrupting memory ourselves. ...
-4
votes
1answer
45 views

realloc() was failing, so i made my own realloc function, but it's still failing… why? [closed]

As title: void* fuck_realloc(void *p, size_t size_, size_t previous_size) { void *k; k=malloc(size_); //<---Here copy_data(p, k, size_, previous_size); free(p); return k; } I ...
1
vote
1answer
106 views

SIGSEGV 0xb on Java 1.6 and 1.7 on Ubuntu

i have really annoying problems with Java 1.6 and Java 1.7 on Ubuntu 13.10 (and Xubuntu 12.10), both x64. My problem doesn't occure on Debian 6.0 x64. I run some test code for a nodejs application ...
-4
votes
0answers
14 views

SIGSEGV: Alertview Crash on Undocumented method

0 libobjc.A.dylib 0x338fef78 objc_msgSend 1 UIKit 0x33732ac9 -[_UIAlertStackWatcher _repopupIfNecessaryWithNotification:] 2 Foundation 0x35106933 __NSFireDelayedPerform 3 CoreFoundation ...
0
votes
0answers
46 views

What can cause this SIGSEGV error?

I received a crash log that I cannot explain. I have searched around and it appears that the SIGSEGV has something to do with memory. But in my case there is nothing of my own code except for the ...
0
votes
0answers
31 views

flex on HP-UX 64-bit fails

System is HP-UX 11.31: HP-UX XXX B.11.31 U ia64 2121756102 unlimited-user license flex is built from source, jbaltz@xxx[~]>flex -V flex 2.5.37 Trying to build gSOAP, I consistently get this ...
0
votes
1answer
58 views

Debug objc_msgSend crash I cant reproduce

I've had some crash reports from bugsense for my iOS app I'm not able to reproduce and so not to debug. It happens more than 200 times a day so I guess it's quite serious. I've read something about ...
1
vote
2answers
42 views

C++ - Empty method causing SIGSEV signal

I'm making a simple deck/card/hand object oriented system for a university assignment, and I've become stuck on this problem. I've set up a simple test class which calls various methods in objects. ...
0
votes
1answer
45 views

SIGSEGV Error occurs on the actual device but not on ios simulator

I am the developer of a cydia tweak named CountdownCenter. I was trying to create a digital clock appearance for my widget, so I created a sample app that does this perfectly. After doing this, I ...
0
votes
0answers
23 views

runtime error (SIGSEGV) spoj(PALIN)

I have been solving this problem on spoj. code=PALIN It is working all good on that online compiler Ideone.com which is refrenced by spoj itself, but when i tried to submit my code in spoj, it gave ...
0
votes
0answers
48 views

Reading file in Android NDK

I have the following native code in my project: sprintf(fileName, "specsheet.txt"); ifstream file; file.open(fileName); However, I get a signal 11 error when I try to launch the app and it executes ...
1
vote
1answer
50 views

Unexpected crash using jni in monodroid project

I've been trying to import a simple hello world NDK project into a monodroid project using Xamarin Studio. The NDK part of the project compiles and builds fine, I can invoke the native methods but ...
0
votes
1answer
43 views

SIGSEGV for Column-wise matrix using string concatenation in Fortran

I am trying to read a column of a flowfield snapshot (uvw stacked, ~24k of them) and assemble multiple snapshots (which are saved into a individual .dat files, as seen in the code posted) into a ...
0
votes
2answers
64 views

SIGSEGV error keeps showing up

this error keeps on appearing for every program i try to submit on spoj.pl In the given code i need to find prime numbers between m - n for t no. of test cases . problem ...
0
votes
0answers
46 views

iOS Crash Report on Reported Thread

This is a follow up to a previous question I'd asked about troubleshooting a crash log: " NSAutoReleasePool releasing view controller? " That question was answered adequately, but I now have a ...
1
vote
1answer
50 views

NSAutoReleasePool releasing view controller?

So I'm having a bit of a difficult time troubleshooting a crash log that I'm getting from our tester. The app is crashing with a EXC_CRASH (SIGSEGV), and the only recognizable code in any of the ...
1
vote
1answer
66 views

SIGSEGV fault when opening file

On line 42 I receive the signal Program received signal SIGSEGV, Segmentation Fault. From the research I did, I believe it has something to do with my pointers, but I really don't know what. Here is ...
0
votes
0answers
46 views

using mmap to allocate locally invalid address in userspace

Using http://www.spinics.net/lists/newbies/msg13355.html as reference i am trying to code a distributed shared memory system in user space. Here is the code that i have so far i cant seem to ...
0
votes
2answers
43 views

NEW not working on ARM linux OABI uClibc

Really strange issue :) "new" operator cause SIGSEGV (SEGV_MAPERR) fault. But malloc work. Test programm: int main(){ printf( "APP STARTED\n" ); // - Check malloc char * m = ...
0
votes
1answer
57 views

Why is the following C code being sent a SIGSEGV signal?

I have the following structure: typedef struct binTree_t { int key; enum {lMore, rMore, equal} ratio; struct binTree_t* parent; struct binTree_t* left; struct binTree_t* right; struct ...
0
votes
1answer
64 views

mysql SIGSEGV multithreaded boost [duplicate]

I am using boost asio for my socket server application. Each connection is handled by a boost thread. I am using io_service per core, each io_service runs in a work thread. In my connection I am ...
1
vote
0answers
59 views

Serialization issues with ServiceStack followed by SEGV on mono 2.10.8.1

I'm running Service Stack under Linux / mono 2.10.8.1 and I seem to be encountering some serialization issues where the deserializer is looking for properties on the wrong class. Then null reference ...
1
vote
4answers
102 views

SIGSEGV (Segmentation fault) C++ Pointers

Ok this is my code: #include <iostream> using namespace std; class Nodo{ public: Nodo *siguiente,*anterior; string Nombre,Curso,Posicion; int carnet; Nodo(){ ...
0
votes
0answers
73 views

Qt Debugger show Segmentation Fault when debugging a given Qt example

I am debugging "examples/itemviews/simpletreemodel" example. In the main.cpp file line view.setWindowTitle(QObject::tr("Simple Tree Model")); Causes debugger to show segmentation fault. If I ...
0
votes
2answers
76 views

SIGSEGV with QMainWindow singleton

The application I am writting as unique instantiation of some classes which have to be accessible easily. For that i use singletons. For exemple my Core is defined as : class Core : public QObject { ...
0
votes
0answers
40 views

SIGSEGV in findClass

This issues has been raised as bug as : here, here, and here. Similar issue I am getting on specific platform (RH 6.1). Whenever I try to load custom file (apart from java API) it crashes without ...
1
vote
0answers
134 views

Qt 4.8.4 application crashes on Windows Vista while quitting

I have a Qt application which intermittently crashes while exiting on a Windows Vista machine (it works fine on Mac & Windows XP, need to try more on other Windows versions). I am doing a ...
0
votes
2answers
23 views

SIGSEV error (gdb)

I currently am running a c++ file which compiles but crashes when it runs. I open the debugger and get the following line when I run the program: Program received signal SIGSEGV, Segmentation ...
2
votes
2answers
136 views

Strange crash when presenting modal UIViewController

I've seen this crash report a few times. It is extremely random and rare, and I can't understand it. All I am doing is presenting a modal view controller using the following code ComposeController ...
1
vote
0answers
88 views

xcode: sigsegv crash with AddressBookUI

I have an error exc_bad_access (sigsegv) but I cannot understand why. The crashlog is not very informative. Can somebody help me? It seems to me that the error occurs when the app starts and loads ...
1
vote
1answer
111 views

Code making SIGSEGV in GCC but not Clang

This code generates a SIGSEGV on runtime when compiled with GCC (4.7.2-5ubuntu) but not Clang (Apple LLVM 4.2) #include <functional> #include <iostream> using FuncType = ...
2
votes
1answer
42 views

SIGSEGV error in some lua/c++ code

The following code end in a SIGSEGV error: extern "C" { #include "lua/lua.h" #include "lua/lualib.h" #include "lua/lauxlib.h" } int main( int argc, char *argv[] ) { lua_State *L; ...
0
votes
1answer
36 views

SIGSEGV symbolication points only to core classes

I am using Bugsense in my app to get crash reports. I have a repeating bug with SIGSEGV and no other details about it. I tried to symbolicate the report but I get this: 0 libobjc.A.dylib 0x33417f78 ...
-1
votes
1answer
267 views

Find the number of points on or inside a triangle for very large number of points?

You are given N lattice points (Xi, Yi), i = 1, 2, ..., N on a 2D Coordinate System. You have to process Q queries, each query will be given as the form "x y d". Let ABC be the triangle having ...
1
vote
1answer
110 views

segmentation fault in unordered_map after ~ 10000 keys added

Segmentation fault occurs when datact=10736 when trying to insert into an unordered_map (see commented line for which call throws the fault). See below for attempted fixes. When SIGSEGV is thrown it ...
0
votes
0answers
27 views

SIGSEGV in do_pseudo_reloc() - g++

I am trying to run a web-service program that contains a mix of C and C++ code compiled on cygwin using g++. The program compiles and links OK, but I am running into trouble while running it. The call ...
0
votes
3answers
106 views

Not sure why I'm getting a segfault in Java/Android when declaring an array

So I've got some code that is crashing in Android, and I have no idea why. while(true) { byte[] colorData = new byte[480*800]; colorData = null; System.out.println("what"); } It ...
0
votes
1answer
389 views

Is “Process terminated by signal (11)” always related to NDK?

I am tracking a bug in my project. From time to time, my app gets killed and in the logcat there is always the following line: D/Zygote ( xx): Process xxxx terminated by signal (11) I have been ...
0
votes
2answers
81 views

How to fix SIGSEGV? (Error while dealing with large values upto 1000000 in Fibonacci Series)

Tried to develop a code that quickly finds Fibonacci values. But the problem is I get SIGSEGV error when input is of order 1000000. Also from other questions around here I came to know that it may be ...
0
votes
0answers
103 views

SIGSEGV SEGV_ACCERR in AFHTTPRequest completion block

I have received a few error logs that are showing that sometimes my AFHTTPRequest completion block is crashing. I'm sure this is a memory management issue but I'm not sure where it goes wrong. Thread ...
1
vote
2answers
83 views

c - SIGSEGV reported using pow()

Compiler threw a SIGSEGV at tmp = pow(p[i],j); while p[i] and j are two integers, and p[i] is a valid element of array p, I really don't know why... Original code is here:http://pastebin.com/DYhGeHxm ...
3
votes
2answers
139 views

Where is local variable allocated? Heap or stack?

http://www-ee.eng.hawaii.edu/~tep/EE160/Book/chap14/subsection2.1.1.8.html This page says local variables and parameters passed are allocated on stack, So I tried: #include <stdio.h> #include ...
0
votes
1answer
110 views

Catching SIGSEGV using signals and sigsegjmp/siglongjmp

I am writing a little program to scan a single memory addy on each page of the memory to see if it is readable/or read-writable/or none. NOTE: I have not shown parts of the code, because its the ...
0
votes
1answer
105 views

SIGSEGV in optimizated ifort

If I compile with -O0 in ifort, the program can run correctly. But as long as I open the optimization option, like -O, -O3, -fast, there will be a SIGSEGV segmentation fault come out. This error ...
1
vote
2answers
159 views

SIGSEGV error using SWIG to make a java shared library

So, I'm trying to port a C library (libnfc) to Java using SWIG. I've got to the point of having a compiled shared library, and a basic "nfc_version()" method call will work. However, calling ...
-2
votes
2answers
191 views

c code segmentation fault “SIGSEGV” using gdb debugger [closed]

I have a code that scans an entire directory for .wor files, and extract info from them. When I run the file on a directory with 5 .wor files, it works perfectly. But when i try to run it on a ...
0
votes
0answers
75 views

SIGSEGV with syntheisized properties & _loadViewFromNibNamed

I'm getting crash reports from my iPad application in production which seems to indicate a crash when loading a xib. Here's what the SIGSEGV crash looks like: QuartzCore 0x35fd75c0 CALayerGetDelegate ...

1 2 3 4 5