I am getting the following error when I run my Java project on Eclipse Oxygen with JRE build 1.8.0_152-b16.
Can any of you help me solve the problem?
Eclipse Console :
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x152926f5, pid=6188, tid=0x00000264
#
# JRE version: Java(TM) SE Runtime Environment (8.0_152-b16) (build 1.8.0_152-b16)
# Java VM: Java HotSpot(TM) Client VM (25.152-b16 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [seed.dll+0x26f5]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# C:\Users\kso8kor\PluginDevelopment_Fresh\Implementation\hs_err_pid6188.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.
#
Note : I am using 32bit eclipse and 32bit JVM on a 64bit machine.
The only (tiny) clue in the information you have provided us is that the problem occurred in some native code from a DLL called "seed.dll". Google didn't give me any leads about what this DLL does ... or even where it comes from.
Generally speaking, JVM crashes happen for one of these reasons:
Unsafe
class. Something this code is doing is breaking the JVM. This code might be third-party code.The best I can suggest is:
hs_err_pid*.log
file.Unfortunately, problems like this are inherently difficult to diagnose.
Had this issue after updating Java. Solved by removing Java from PC and re-installing it from https://www.java.com
User contributions licensed under CC BY-SA 3.0