Tagged Questions

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

18
votes
4answers
12k views

How can I catch SIGSEGV (segmentation fault) and get a stack trace under JNI on Android?

I'm moving a project to the new Android Native Development Kit (i.e. JNI) and I'd like to catch SIGSEGV, should it occur (possibly also SIGILL, SIGABRT, SIGFPE) in order to present a nice crash ...
10
votes
3answers
139 views

SIGSEGV in optimized version of code

My knowledge of the intel instruction set is a bit rusty. Can you tell me why I might be getting a segmentation fault in the optimized version of my function (bonus points if you can tell me why I ...
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 ...
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" ...
6
votes
2answers
168 views

Using /etc/ld.so.preload in a multi arch setup

Is there some way to use ld.so.preload and cover both 32bit and 64bit binaries? If I list both the 32bit and 64bit versions of the fault handler in ld.so.preload then the loader always complains that ...
6
votes
5answers
3k views

Getting stack traces on Unix systems, automatically

What methods are there for automatically getting a stack trace on Unix systems? I don't mean just getting a core file or attaching interactively with GDB, but having a SIGSEGV handler that dumps a ...
5
votes
1answer
99 views

Why is the segfault signal on *nix abbreviated as 'SIGSEGV' and not 'SIGSEGF'?

Is there any historical reason? Is there actually any reason at all or was it pure coincidence? Wikipedia failed on me this time, so I hope you can provide me with some information / an answer. :)
5
votes
2answers
146 views

libsigsegv and responding to a stack overflow

We are attempting to test student code, and in an effort to automate the process, we'd like to detect if a student's code overflows the stack. I've met with some success using the libsigsegv library ...
4
votes
1answer
956 views

How to find which thread caused SEGFAULT in a post-mortem gdb session?

In my application I handle SIGSEG to produce a backtrace and call abort() to generate a core dump. If I now run a gdb-post-mortem analysis of the core, the thread which caused the SEGFAULT is no ...
4
votes
3answers
283 views

How can you “avoid” a SIGSEGV?

I'm writing a client-server app, in which the client has a determined memory address from the server side. If something goes wrong and the server needs to be reestarted the address the client has is ...
4
votes
6answers
2k views

How can malloc() cause a SIGSEGV?

I have an odd bug in my program, it appears to me that malloc() is causing a SIGSEGV, which as far as my understanding goes does not make any sense. I am using a library called simclist for dynamic ...
3
votes
1answer
313 views

POSIX Threads and SIGSEGV

I have a system with 10+ threads. I have a signal handler to catch SIGSEGV. if one thread generates SIGSEGV, does that signal go to all threads, or just to the thread that generated the signal?
3
votes
1answer
312 views

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 ...
2
votes
0answers
74 views

JVM runs in eclipse, crashes outside with SIGSEGV

I am using the library native-tray-adapter, which requires the library jni-utils-1.0 to ensure that icons in Ubuntu don“t have a transparent background. My program creates a menu with a close menu ...
2
votes
4answers
187 views

Shortest code that return SIGSEGV among the given languages [closed]

I come across a question in a coding competion "write a code that returns SIGSEGV(Segmentation fault ) " . Points were given on the basis of length of code. The prgramming languages available ...
2
votes
1answer
463 views

Login with facebook android sdk app crash API 4

Login with Facebook android SDK crash in a second after "publish to wall" dialog appeared. I found descriptions of probably the some issue here: ...
2
votes
2answers
143 views

SIGSEGV within std::sort, how to narrow it down

This is a related post to this one as it deals with the same program, but i now implemented it iterative and not recursive anymore, but I still get SIGSEGV (but later) while running the program. I did ...
2
votes
2answers
672 views

Weird SIGSEGV segmentation fault in std::string::assign() method from libstdc++.so.6

My program recently encountered a weird segfault when running. I want to know if somebody had met this error before and how it could be fixed. Here is more info: Basic info: CentOS 5.2, kernal ...
2
votes
1answer
624 views

Prevent Flash Player fault in WebView, as is done by the Android Browser

I'm loading .swf files into a WebView directly using webView.loadUrl("http://whatever.com/file.swf");. It works perfectly in the vast majority of cases. When loading a few specific swf files on ...
2
votes
2answers
584 views

Catch Flash out-of-memory error in WebView?

When loading certain .swf files into a WebView, a split second after the flash file begins to be displayed, my app closes with a Signal 11 fault. No exception is thrown that I can see. Example LogCat ...
2
votes
3answers
983 views

how to debug SIGSEGV in jvm GCTaskThread

My application is experiencing cashes in production. The crash dump indicates a SIGSEGV has occurred in GCTaskThread It uses JNI, so there might be some source for memory corruption, although I can't ...
2
votes
4answers
295 views

segfault only when NOT using debugger

I have a multithreaded C program, which consistently generates a segmentation fault at a specific point in the program. When I run it with gdb, no fault is shown. Can you think of any reason why the ...
2
votes
1answer
590 views

A lot of SIGSEGV while strace'ing java process

Interesting stuff occurred while I debug one of the unit tests on CI server (maven build actually). I connect to java process with strace -ff -e trace=network -p [pid] to trace network activity of ...
2
votes
2answers
346 views

Can I write-protect every page in the address space of a Linux process?

I'm wondering if there's a way to write-protect every page in a Linux process' address space (from inside of the process itself, by way of mprotect()). By "every page", I really mean every page of ...
2
votes
10answers
460 views

Coming back to life after Segmentation Violation

Is it possible to restore the normal execution flow of a C program, after the Segmentation Fault error? struct A { int x; }; A* a = 0; a->x = 123; // this is where segmentation violation ...
2
votes
2answers
238 views

SIGSEGV problem

I'm designing a protocol (in C) to implement the layered OSI network structure, using cnet (http://www.csse.uwa.edu.au/cnet/). I'm getting a SIGSEGV error at runtime, however cnet compiles my source ...
2
votes
1answer
614 views

C SIGSEGV Handler & Mprotect

I'm constructing a program which uses mprotect() to restrict a block of memory from accessing. When the memory is requested, a SIGSEGV is thrown which I listen for using a signal() call. Once the ...
2
votes
1answer
2k views

iPhone KERN_INVALID_ADDRESS

Im not sure why I am recieving this error, and I'm unable to track down the cause. This only happens on the device though, Simulator runs error-free as expected. Can anyone make sense of this crash ...
2
votes
1answer
720 views

Handling segfault signal SIGSEGV need to determine the cause of segfault using siginfo_t

I'm making a wrapper for the pthread library that allows each thread to have its own set of non-shared memory. Right now the way c is set up if any thread tries to rwe another threads data, the ...
2
votes
1answer
304 views

Arrays in Objective-C main method. Sigserve errors. Newb

In Objective-C how should I best approximate what in Java I am doing like this: static private String[] array {"A", "B", "C"}; What I think I need is a simple array that I can index into with ...
1
vote
2answers
76 views

Mathematica SIGSEGV error - when manipulating 3D plots with mouse

I am using Mathematica 8.0.1.0 on Ubuntu 11.10. I created a 3D plot from an NDSolve output and when I tried to move it about with my mouse, Mathematica completely crashed and reported a SIGSEGV error. ...
1
vote
1answer
75 views

How unordered_map cause sigsegv [closed]

EDIT: solved, I know how but I don't understand why. I changed variables declaration from tr1::unordered_map<int,T> variables; to unordered_map<int,T> variables; and it's work ...
1
vote
1answer
70 views

Variable and operator seem to be ignored in assignment. What can make this happen?

I am debugging an android app and I see that stepping over in eclipse debug view: int bottom, right; bottom = 800; right = 480; float h ,v; h = right/86.0f; v = bottom/116.0f; ...
1
vote
1answer
47 views

Play Framework causing SIGSEGV fault on first page load with crud moduel

Found this bug, which states the problem as well as I could. https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/732707 The question is - are there any potential workarounds? Thanks
1
vote
2answers
743 views

No hs_err_pid.log file created and core dumped from jvm on Solaris

Problem description After a while of running my java server application I am experiencing strange behaviour of Oracle Java virtual machine on Solaris. Normally, when there is a crash of jvm ...
1
vote
4answers
182 views

Why does this PHP function give a segmentation fault (SIGSEGV)?

I wrote the following code. <?php function f(){ return f(); } f(); and get the output $ php test.php Segmentation fault Why? I didn't use any pointers. This is StackOverflow ?
1
vote
3answers
149 views

Stack overflow (SIGSEGV) when calling static c++ class method

I've been looking into this problem for hours and tried all sorts of things, but everything results in the same - a SIGSEGV (from gdb; according to VC debug it's a stack overflow...) at the point when ...
1
vote
0answers
262 views

mips _Unwind_Backtrace on SIGSEGV

On a mips platform, I am trying to get Unwind work. Currently if I issue print_trace manually stack trace is correctly shown as below: backtrace_helper 0x4b6958 backtrace_helper 0x4b6ab4 ...
1
vote
3answers
166 views

C++ SIGSEGV Segmentation fault in loop

I have the following code which ends up in a segmentation fault. for (int a=0; a<inputFileList.size(); a++) { fileLines = readFile(inputFileList[a].c_str()); for (int i = ...
1
vote
1answer
183 views

Getting SIGSEGV When Trying to Play an mp3 in AVAudioPlayer Using Monotouch

I am trying to play an mp3 file with the following code. AVAudioPlayer player = new AVAudioPlayer(); NSUrl mediaFile = NSUrl.FromFilename(monkeySound); player = AVAudioPlayer.FromUrl(mediaFile); ...
1
vote
2answers
69 views

getting error in c code

I am getting the following error message: Program received signal SIGSEGV, Segmentation fault. 0x08048ff3 in key_deck (key=0x0) at c1.c:210 210 for (; *key != '\0'; key++) { (gdb) This is my ...
1
vote
1answer
1k views

Fatal SIGSEGV error in Java Runtime Environment

Following error is received while running a java application on linux, crashing the jvm: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at ...
1
vote
6answers
385 views

C++ program does not process any function call or printf during SIGSEGV in gcc

I am having problem in getting my stack trace output to stderr or dumping to a log file. I am running the code in Kubuntu10.04 with gcc compiler (4.4.3). The issue is that in the normal running mode ...
1
vote
1answer
259 views

What could make Xcode's debugger go to the wrong file/line?

I have an application framework that build and runs fine on the Mac, and am trying to port it to iOS. The last bit of functionality is getting Ogg Vorbis files to load in iOS. However, when I call ...
1
vote
2answers
246 views

How to debug a SIGSEGV on a Mac?

I just starting as an Android app developer and I already have a problem with my first app :( It's a webapp created with jQTouch and packaged with PhoneGap that is on the market for a few weeks. One ...
1
vote
0answers
162 views

SIGSEGV in Mono 2.6.7 running Denian Lenny

I recently installed mono 2.6.7 on my debian lenny and I am trying to run a minecraft server. Everything I run the mono command i get the error from below: Stacktrace Native stacktrace mono ...
1
vote
2answers
45 views

How Auto Bug Report Tool (ABRT) works in order to catch cores at the runtime?

My fedora12 installed a tool called ABRT that comes probably with GNOME. This tool operates at the background and reports at realtime any process that has crashed. I have used a signal handler that ...
1
vote
1answer
460 views

Android app crash in the OS layer

I frequently get an app crash while the ListView is calling on the Adapter to provide backing data. Device is a Sony Experia X10 with Android 1.6. This is just a Seg fault violation, however I dont ...
1
vote
3answers
2k views

Java Runtime Environment getting “fatal error SIGSEGV”

I am trying to run a Java program through Eclipse. Whenever I try and run the thing, this is what I get: Info: XInitThreads() called for concurrent Thread support # # A fatal error has been detected ...
1
vote
0answers
102 views

Converting signal to NSException only work the first time

It seems that when BSD signals are converted to thrown exceptions, it only work the first time but not subsequent times. I tried to convert signals to exception via the following call I made in the ...

1 2 3