在日食开始后获得SIGSEGV

时间:2016-04-22 14:45:16

标签: java eclipse scala

我最近设置了SCALA Eclipse IDE,并且在我启动我的日食之后就已经发现了这个致命事件(比如说在一分钟之内)。

现在,stackoverflow上的大多数SIGSEGV帖子都会在问题框架区域中找到问题或解决问题的方法。但是,就我而言,它只是说明了有问题的框架。你能告诉我一个我需要继续的方向吗?

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x0000000000000000, pid=5321, tid=47349238024512
#
# JRE version: Java(TM) SE Runtime Environment (8.0_77-b03) (build 1.8.0_77-b03)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.77-b03 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  0x0000000000000000
#
# Core dump written. Default location: /usr/local/scala-eclipse/core or core.5321
#
# An error report file with more information is saved as:
# /usr/local/scala-eclipse/hs_err_pid5321.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

1 个答案:

答案 0 :(得分:1)

据说,你有核心文件/usr/local/scala-eclipse/core 和错误文件以及更多信息/usr/local/scala-eclipse/hs_err_pid5321.log。 你打开hs_err_pid5321.log了吗?它包含更多信息吗?

关于核心文件:sa-jdi.jar文件(在jdk / lib目录中)有一个很好的GUI应用程序sun.jvm.hotspot.HSDB。您可以在该工具中打开核心文件并检查文件 enter image description here

相关问题