Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 pc=0x000000000000003a, pid=7629, tid=140107993413376
#
# JRE version: 6.0_24-b07
# Java VM: Java HotSpot(TM) 64-Bit Server VM (19.1-b02 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  0x000000000000003a
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

For full error log see http://pastebin.com/NghPkCpx

Not sure where to begin with this, usually I would check Java frames :

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  java.lang.UNIXProcess.forkAndExec([B[BI[BI[BZLjava/io/FileDescriptor;Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;)I+0
j  java.lang.UNIXProcess.access$500(Ljava/lang/UNIXProcess;[B[BI[BI[BZLjava/io/FileDescriptor;Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;)I+18
j  java.lang.UNIXProcess$1$1.run()V+93
v  ~StubRoutines::call_stub

Although not sure what to make from this, any ideas how to go about debugging?

like image 827
Nigel_V_Thomas Avatar asked Apr 18 '11 17:04

Nigel_V_Thomas


1 Answers

Unless you have your own JNI code, you've hit a bug in Java itself, and there's no point to 'debugging' it. Best you can do is look for a newer release of the JRE.

like image 197
bmargulies Avatar answered Nov 13 '22 23:11

bmargulies