java - Why does JVM error occur? -
# # fatal error has been detected java runtime environment: # # sigsegv (0xb) @ pc=0x00007ff17a60c678, pid=4219, tid=140673779791616 # # jre version: java(tm) se runtime environment (8.0-b124) (build 1.8.0-ea-b124) # java vm: java hotspot(tm) 64-bit server vm (25.0-b66 mixed mode linux-amd64 compressed oops) # problematic frame: # v [libjvm.so+0x665678] jni_invoke_nonstatic(jnienv_*, javavalue*, _jobject*, jnicalltype, _jmethodid*, jni_argumentpusher*, thread*)+0x38 # # failed write core dump. core dumps have been disabled. enable core dumping, try "ulimit -c unlimited" before starting java again # # error report file more information saved as: # /media/data/k's world/javafx/chatapp/hs_err_pid4219.log compiled method (c1) 16675 988 3 java.util.concurrent.atomic.atomicboolean::set (14 bytes) total in heap [0x00007ff16535ef50,0x00007ff16535f2a0] = 848 relocation [0x00007ff16535f070,0x00007ff16535f0a0] = 48 main code [0x00007ff16535f0a0,0x00007ff16535f1c0] = 288 stub code [0x00007ff16535f1c0,0x00007ff16535f250] = 144 metadata [0x00007ff16535f250,0x00007ff16535f258] = 8 scopes data [0x00007ff16535f258,0x00007ff16535f268] = 16 scopes pcs [0x00007ff16535f268,0x00007ff16535f298] = 48 dependencies [0x00007ff16535f298,0x00007ff16535f2a0] = 8 # # if submit bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp #
i writing chat app in javafx..and using eclipse ide.. application running don't know why application has been stopped.
it sounds you're running javafx java 8 on linux, , you've run bug:
https://bugs.openjdk.java.net/browse/jdk-8141687
app crashes while starting main.class in javafx
ava version "1.8.0_60" java(tm) se runtime environment (build 1.8.0_60-b27) java hotspot(tm) 64-bit server vm (build 25.60-b23, mixed mode)
additional os version information : mint17.2 cinnamon 64bit
suggestion: try different version of java/javafx.
run
sudo update-alternatives --config java
see alternatives present on system. downgrade java 1.7 if possible.if there no suitable candidates, use
apt-get install openjdk-7-jdk
:
Comments
Post a Comment