I'm working on a game in java using lwjgl and it's OpenGL implementation.
Never had any problems until I exchanged it with a colleague who uses NVIDIA instead of AMD, and suddenly it crashes on a line that works on AMD but it only crashes at that point in the code. That is the weardest part because I use the same method to create the VBOs from .obj-files. I even tried it with the same file but still at that point it crashes on all other occasion not.
Could it be maybe a wrong set flag or something? I hope somebody here can help.
for (int i = 0; i < material.length; i++) {
material[i].activate();
glEnableClientState(GL_VERTEX_ARRAY);
GL15.glBindBuffer(GL15.GL_ARRAY_BUFFER, vertexVBO[i]);
glVertexPointer(3, GL_FLOAT, 0, 0);
if (normalsEnabled[i]) {
glEnableClientState(GL_NORMAL_ARRAY);
GL15.glBindBuffer(GL15.GL_ARRAY_BUFFER, normalVBO[i]);
glNormalPointer(GL_FLOAT, 0, 0);
}
if (material[i].getTexture() != null) {
glEnableClientState(GL11.GL_TEXTURE_COORD_ARRAY);
GL15.glBindBuffer(GL15.GL_ARRAY_BUFFER, textureVBO[i]);
GL11.glTexCoordPointer(2, GL_FLOAT, 0, 0);
GL11.glEnable(GL11.GL_TEXTURE_2D);
glDrawArrays(GL11.GL_TRIANGLES, 0, sizeVBO[i]);
GL11.glDisable(GL11.GL_TEXTURE_2D);
} else //CRASHS HERE
glDrawArrays(GL11.GL_TRIANGLES, 0, sizeVBO[i]);
}
resulting error:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000000003ffe68, pid=4936, tid=4048
#
# JRE version: Java(TM) SE Runtime Environment (8.0_25-b18) (build 1.8.0_25-b18)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C 0x00000000003ffe68
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x00000000003ef000): JavaThread "main" [_thread_in_native, id=4048, stack(0x0000000002330000,0x0000000002430000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
Registers:
RAX=0x0000000058461574, RBX=0x0000000011fe0000, RCX=0x0000000000000000, RDX=0x0000000000000038
RSP=0x000000000242ee00, RBP=0x00000000bc7602a4, RSI=0x0000000000000000, RDI=0x0000000000000000
R8 =0x0000000000000000, R9 =0x0000000000000038, R10=0x0000000000000277, R11=0x0000000000410158
R12=0x0000000000000000, R13=0x00000000003ffdc0, R14=0x0000000000000009, R15=0x0000000000000038
RIP=0x00000000003ffe68, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x000000000242ee00)
0x000000000242ee00: ffffffffa6c87b00 0000000000000000
0x000000000242ee10: 0000000000000ce8 0000000011fe0000
0x000000000242ee20: 0000000000000038 000000005a9e84da
0x000000000242ee30: 0000000000000004 000000005a9cd07a
0x000000000242ee40: 0000000011fe0000 0000000000000000
0x000000000242ee50: 00000000003ef000 0000000000000004
0x000000000242ee60: 0000000057fe0080 0000000000000d20
0x000000000242ee70: 0000000000000000 000000005a9e6397
0x000000000242ee80: 0000000000000000 000000005484c780
0x000000000242ee90: 0000000011fe0000 0000000000000000
0x000000000242eea0: 000c000000003003 0080000000000000
0x000000000242eeb0: 000000000242efd8 000000005a6bfdc2
0x000000000242eec0: 0000000011fe0000 000000000242ef98
0x000000000242eed0: 0000000000000000 0000000000000004
0x000000000242eee0: 000000000242ef98 000000000242ef58
0x000000000242eef0: 000000000242ef58 000000000271a111
Instructions: (pc=0x00000000003ffe68)
0x00000000003ffe48: 08 89 78 14 48 be 90 b3 02 12 00 00 00 00 48 8b
0x00000000003ffe58: 36 48 8b b6 c8 01 00 00 48 8d 3c 49 48 8d 34 be
0x00000000003ffe68: 8b 3e 8b 6e 04 89 78 18 89 68 1c 8b 7e 08 89 78
0x00000000003ffe78: 20 48 83 c0 24 ff c1 ff ca 0f 85 72 ff ff ff 48
Register to memory mapping:
RAX=0x0000000058461574 is an unknown value
RBX=0x0000000011fe0000 is an unknown value
RCX=0x0000000000000000 is an unknown value
RDX=0x0000000000000038 is an unknown value
RSP=0x000000000242ee00 is pointing into the stack for thread: 0x00000000003ef000
RBP=0x00000000bc7602a4 is an unknown value
RSI=0x0000000000000000 is an unknown value
RDI=0x0000000000000000 is an unknown value
R8 =0x0000000000000000 is an unknown value
R9 =0x0000000000000038 is an unknown value
R10=0x0000000000000277 is an unknown value
R11=0x0000000000410158 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x00000000003ffdc0 is an unknown value
R14=0x0000000000000009 is an unknown value
R15=0x0000000000000038 is an unknown value
Stack: [0x0000000002330000,0x0000000002430000], sp=0x000000000242ee00, free space=1019k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C 0x00000000003ffe68
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.lwjgl.opengl.GL11.nglDrawArrays(IIIJ)V+0
j org.lwjgl.opengl.GL11.glDrawArrays(III)V+20
j ogl.gui.obj.ObjectOGL.paint3D(F)V+150
j ogl.gui.obj.ComplexObjectOGL.paint3D(F)V+77
j ogl.game.connect.BattleMapEditorOGL.paint3D(F)V+110
j ogl.gui.MainAppOGL.renderGL(I)V+16
j ogl.gui.MainAppOGL.start()V+28
j ogl.gui.MainAppOGL.main([Ljava/lang/String;)V+9
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000058fbf000 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=1040, stack(0x0000000059920000,0x0000000059a20000)]
0x0000000056c12000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4804, stack(0x0000000059710000,0x0000000059810000)]
0x0000000054d8f800 JavaThread "Service Thread" daemon [_thread_blocked, id=976, stack(0x0000000056e70000,0x0000000056f70000)]
0x0000000054d89800 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=4272, stack(0x0000000056190000,0x0000000056290000)]
0x0000000054d4f800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2432, stack(0x0000000056510000,0x0000000056610000)]
0x0000000054d4b800 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=4116, stack(0x00000000567b0000,0x00000000568b0000)]
0x0000000054d3c800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=4304, stack(0x00000000566a0000,0x00000000567a0000)]
0x0000000054d38000 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=1252, stack(0x0000000056410000,0x0000000056510000)]
0x0000000054d28800 JavaThread "Attach Listener" daemon [_thread_blocked, id=3676, stack(0x0000000055eb0000,0x0000000055fb0000)]
0x0000000054d27800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3516, stack(0x0000000055c90000,0x0000000055d90000)]
0x0000000054cc7800 JavaThread "Finalizer" daemon [_thread_blocked, id=4364, stack(0x0000000055870000,0x0000000055970000)]
0x0000000054cc0800 JavaThread "Reference Handler" daemon [_thread_blocked, id=3596, stack(0x00000000559f0000,0x0000000055af0000)]
=>0x00000000003ef000 JavaThread "main" [_thread_in_native, id=4048, stack(0x0000000002330000,0x0000000002430000)]
Other Threads:
0x0000000054cbb000 VMThread [stack: 0x0000000055770000,0x0000000055870000] [id=3268]
0x00000000568c5000 WatcherThread [stack: 0x0000000056fc0000,0x00000000570c0000] [id=4464]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 18944K, used 18941K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000)
eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000)
from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7f4a0,0x00000000ebd80000)
to space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000)
ParOldGen total 44032K, used 756K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000)
object space 44032K, 1% used [0x00000000c0000000,0x00000000c00bd238,0x00000000c2b00000)
Metaspace used 9280K, capacity 9467K, committed 9728K, reserved 1058816K
class space used 955K, capacity 986K, committed 1024K, reserved 1048576K
Card table byte_map: [0x0000000011ac0000,0x0000000011cd0000] byte_map_base: 0x00000000114c0000
Marking Bits: (ParMarkBitMap*) 0x000000005df7d490
Begin Bits: [0x0000000012190000, 0x0000000013190000)
End Bits: [0x0000000013190000, 0x0000000014190000)
Polling page: 0x0000000000120000
CodeCache: size=245760Kb used=3758Kb max_used=3766Kb free=242001Kb
bounds [0x0000000002700000, 0x0000000002ac0000, 0x0000000011700000]
total_blobs=1472 nmethods=950 adapters=445
compilation: enabled
Compilation events (10 events):
Event: 3.587 Thread 0x0000000054d4f800 893 4 java.util.ArrayList$SubList$1::hasNext (20 bytes)
Event: 3.587 Thread 0x0000000054d4f800 nmethod 893 0x0000000002a96b10 code [0x0000000002a96c40, 0x0000000002a96cd8]
Event: 3.587 Thread 0x0000000054d4f800 842 4 javax.vecmath.Matrix3f::setIdentity (46 bytes)
Event: 3.588 Thread 0x0000000054d4f800 nmethod 842 0x0000000002a96910 code [0x0000000002a96a40, 0x0000000002a96ab8]
Event: 3.588 Thread 0x0000000054d4f800 849 4 com.bulletphysics.$Stack::pop$com$bulletphysics$linearmath$Transform (21 bytes)
Event: 3.588 Thread 0x0000000054d4f800 nmethod 849 0x0000000002a96650 code [0x0000000002a96780, 0x0000000002a96858]
Event: 3.588 Thread 0x0000000054d4f800 859 4 javax.vecmath.Tuple3f::sub (40 bytes)
Event: 3.589 Thread 0x0000000054d4f800 nmethod 859 0x0000000002a96390 code [0x0000000002a964c0, 0x0000000002a96578]
Event: 3.607 Thread 0x0000000054d89800 952 3 ogl.matrix.tile.TileMap::getTile (25 bytes)
Event: 3.608 Thread 0x0000000054d89800 nmethod 952 0x0000000002a94a10 code [0x0000000002a94c00, 0x0000000002a95628]
GC Heap History (2 events):
Event: 3.024 GC heap before
{Heap before GC invocations=1 (full 0):
PSYoungGen total 18944K, used 16384K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000)
eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000)
from space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000)
to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000)
ParOldGen total 44032K, used 0K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000)
object space 44032K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c2b00000)
Metaspace used 8681K, capacity 8751K, committed 8960K, reserved 1056768K
class space used 885K, capacity 918K, committed 1024K, reserved 1048576K
Event: 3.032 GC heap after
Heap after GC invocations=1 (full 0):
PSYoungGen total 18944K, used 2557K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000)
eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000)
from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7f4a0,0x00000000ebd80000)
to space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000)
ParOldGen total 44032K, used 756K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000)
object space 44032K, 1% used [0x00000000c0000000,0x00000000c00bd238,0x00000000c2b00000)
Metaspace used 8681K, capacity 8751K, committed 8960K, reserved 1056768K
class space used 885K, capacity 918K, committed 1024K, reserved 1048576K
}
Deoptimization events (0 events):
No events
Internal exceptions (10 events):
Event: 3.480 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaa43a0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.484 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaa5a38) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.490 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaa70c0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.523 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaa87c0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.526 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaa9ef0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.529 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaab5d8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.568 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaaccb8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.590 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaae398) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.600 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebaafa68) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Event: 3.603 Thread 0x00000000003ef000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000ebab10b8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u25\1677\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Events (10 events):
Event: 23.658 Executing VM operation: GetOrSetLocal
Event: 23.658 Executing VM operation: GetOrSetLocal done
Event: 29.716 Executing VM operation: EnterInterpOnlyMode
Event: 29.716 Executing VM operation: EnterInterpOnlyMode done
Event: 29.716 Executing VM operation: GetCurrentLocation
Event: 29.716 Executing VM operation: GetCurrentLocation done
Event: 29.716 Executing VM operation: ChangeSingleStep
Event: 29.717 Executing VM operation: ChangeSingleStep done
Event: 29.718 Executing VM operation: ChangeSingleStep
Event: 29.718 Executing VM operation: ChangeSingleStep done
Dynamic libraries:
0x000000013fb10000 - 0x000000013fb44000 C:\Program Files\Java\jre1.8.0_25\bin\javaw.exe
0x0000000076db0000 - 0x0000000076f5a000 C:\Windows\SYSTEM32\ntdll.dll
0x0000000076c90000 - 0x0000000076db0000 C:\Windows\system32\kernel32.dll
0x000007fefcc00000 - 0x000007fefcc6b000 C:\Windows\system32\KERNELBASE.dll
0x000007fefedd0000 - 0x000007fefeeab000 C:\Windows\system32\ADVAPI32.dll
0x000007fefebd0000 - 0x000007fefec6f000 C:\Windows\system32\msvcrt.dll
0x000007fefd910000 - 0x000007fefd92f000 C:\Windows\SYSTEM32\sechost.dll
0x000007fefd330000 - 0x000007fefd45d000 C:\Windows\system32\RPCRT4.dll
0x0000000076b90000 - 0x0000000076c8a000 C:\Windows\system32\USER32.dll
0x000007fefd4c0000 - 0x000007fefd527000 C:\Windows\system32\GDI32.dll
0x000007fefe740000 - 0x000007fefe74e000 C:\Windows\system32\LPK.dll
0x000007fefd530000 - 0x000007fefd5fa000 C:\Windows\system32\USP10.dll
0x000007fefb320000 - 0x000007fefb514000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
0x000007fefd600000 - 0x000007fefd671000 C:\Windows\system32\SHLWAPI.dll
0x000007fefd680000 - 0x000007fefd6ae000 C:\Windows\system32\IMM32.DLL
0x000007fefeac0000 - 0x000007fefebc9000 C:\Windows\system32\MSCTF.dll
0x0000000065ba0000 - 0x0000000065c72000 C:\Program Files\Java\jre1.8.0_25\bin\msvcr100.dll
0x000000005d7a0000 - 0x000000005dffa000 C:\Program Files\Java\jre1.8.0_25\bin\server\jvm.dll
0x000007feef2c0000 - 0x000007feef2c9000 C:\Windows\system32\WSOCK32.dll
0x000007fefcf30000 - 0x000007fefcf7d000 C:\Windows\system32\WS2_32.dll
0x000007fefd6b0000 - 0x000007fefd6b8000 C:\Windows\system32\NSI.dll
0x000007fef94a0000 - 0x000007fef94db000 C:\Windows\system32\WINMM.dll
0x0000000076f80000 - 0x0000000076f87000 C:\Windows\system32\PSAPI.DLL
0x0000000073af0000 - 0x0000000073aff000 C:\Program Files\Java\jre1.8.0_25\bin\verify.dll
0x0000000073070000 - 0x0000000073098000 C:\Program Files\Java\jre1.8.0_25\bin\java.dll
0x0000000071030000 - 0x0000000071065000 C:\Program Files\Java\jre1.8.0_25\bin\jdwp.dll
0x0000000073060000 - 0x0000000073068000 C:\Program Files\Java\jre1.8.0_25\bin\npt.dll
0x00000000730b0000 - 0x00000000730c6000 C:\Program Files\Java\jre1.8.0_25\bin\zip.dll
0x000007fefd9b0000 - 0x000007fefe739000 C:\Windows\system32\SHELL32.dll
0x000007fefeeb0000 - 0x000007feff0b3000 C:\Windows\system32\ole32.dll
0x000007fefcb70000 - 0x000007fefcb7f000 C:\Windows\system32\profapi.dll
0x0000000072fb0000 - 0x0000000072fb9000 C:\Program Files\Java\jre1.8.0_25\bin\dt_socket.dll
0x000007fefaa80000 - 0x000007fefaa95000 C:\Windows\system32\NLAapi.dll
0x000007fefa330000 - 0x000007fefa345000 C:\Windows\system32\napinsp.dll
0x000007fefa120000 - 0x000007fefa139000 C:\Windows\system32\pnrpnsp.dll
0x000007fefc370000 - 0x000007fefc3c5000 C:\Windows\System32\mswsock.dll
0x000007fefc1f0000 - 0x000007fefc24b000 C:\Windows\system32\DNSAPI.dll
0x000007fefa630000 - 0x000007fefa63b000 C:\Windows\System32\winrnr.dll
0x000007fefa670000 - 0x000007fefa697000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fefa660000 - 0x000007fefa66b000 C:\Windows\system32\WINNSI.DLL
0x000007fef9fa0000 - 0x000007fef9ff3000 C:\Windows\System32\fwpuclnt.dll
0x000007fefa320000 - 0x000007fefa328000 C:\Windows\system32\rasadhlp.dll
0x000007fefbd10000 - 0x000007fefbd17000 C:\Windows\System32\wshtcpip.dll
0x0000000180000000 - 0x0000000180064000 C:\Users\Demon\workspace\ogl\native\windows\OpenAL64.dll
0x0000000011e30000 - 0x0000000011e83000 C:\Users\Demon\workspace\ogl\native\windows\lwjgl64.dll
0x000007feedbd0000 - 0x000007feedced000 C:\Windows\system32\OPENGL32.dll
0x000007fef9a20000 - 0x000007fef9a4d000 C:\Windows\system32\GLU32.dll
0x000007feeb770000 - 0x000007feeb861000 C:\Windows\system32\DDRAW.dll
0x000007fef9aa0000 - 0x000007fef9aa8000 C:\Windows\system32\DCIMAN32.dll
0x000007fefe8e0000 - 0x000007fefeab7000 C:\Windows\system32\SETUPAPI.dll
0x000007fefcd20000 - 0x000007fefcd56000 C:\Windows\system32\CFGMGR32.dll
0x000007fefcf80000 - 0x000007fefd057000 C:\Windows\system32\OLEAUT32.dll
0x000007fefcf10000 - 0x000007fefcf2a000 C:\Windows\system32\DEVOBJ.dll
0x000007fefa8a0000 - 0x000007fefa8b8000 C:\Windows\system32\dwmapi.dll
0x000007fefbc40000 - 0x000007fefbc4c000 C:\Windows\system32\VERSION.dll
0x000007fefb140000 - 0x000007fefb196000 C:\Windows\system32\uxtheme.dll
0x000007feed2a0000 - 0x000007feed2e8000 C:\Users\Demon\AppData\Local\Temp\TeamViewer\tv_x64.dll
0x0000000059e90000 - 0x000000005bac0000 C:\Windows\system32\nvoglv64.DLL
0x000007fefcba0000 - 0x000007fefcbdb000 C:\Windows\system32\WINTRUST.dll
0x000007fefcd60000 - 0x000007fefcecd000 C:\Windows\system32\CRYPT32.dll
0x000007fefcb80000 - 0x000007fefcb8f000 C:\Windows\system32\MSASN1.dll
0x000007fefaef0000 - 0x000007fefaf1d000 C:\Windows\system32\ntmarta.dll
0x000007fefd460000 - 0x000007fefd4b2000 C:\Windows\system32\WLDAP32.dll
0x000007fefca10000 - 0x000007fefca1f000 C:\Windows\system32\CRYPTBASE.dll
0x000007fef94e0000 - 0x000007fef957c000 C:\Windows\system32\mscms.dll
0x000007fefced0000 - 0x000007fefceef000 C:\Windows\system32\USERENV.dll
0x000007fef1a60000 - 0x000007fef1aa2000 C:\Windows\system32\icm32.dll
0x0000000059cf0000 - 0x0000000059e88000 C:\Program Files\Java\jre1.8.0_25\bin\awt.dll
0x000007fef0e10000 - 0x000007fef0f35000 C:\Windows\system32\dbghelp.dll
VM Arguments:
jvm_args: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:50127 -Dfile.encoding=Cp1252
java_command: ogl.gui.MainAppOGL
java_class_path (initial): C:\Users\Demon\workspace\ogl\bin;C:\Users\Demon\workspace\ogl\lib\lwjgl_util.jar;C:\Users\Demon\workspace\ogl\lib\lwjgl.jar;C:\Users\Demon\workspace\game\bin;C:\Users\Demon\workspace\jbox2d-library\target\classes;C:\Users\Demon\workspace\jbox2d-library\target\test-classes;C:\Users\Demon\Downloads\eclipse-jee-luna-SR2-win32-x86_64\eclipse\plugins\org.junit_4.11.0.v201303080030\junit.jar;C:\Users\Demon\workspace\math\bin;C:\Users\Demon\workspace\game\lib\asm-all-3.1.jar;C:\Users\Demon\workspace\game\lib\jbullet.jar;C:\Users\Demon\workspace\game\lib\stack-alloc.jar;C:\Users\Demon\workspace\game\lib\swing-layout-1.0.3.jar;C:\Users\Demon\workspace\game\lib\vecmath.jar;C:\Users\Demon\workspace\ui\bin
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:/Program Files/Java/jre1.8.0_25/bin/server;C:/Program Files/Java/jre1.8.0_25/bin;C:/Program Files/Java/jre1.8.0_25/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Users\Demon\Downloads\eclipse-jee-luna-SR2-win32-x86_64\eclipse;
USERNAME=Demon
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 6, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 23 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, tsc
Memory: 4k page, physical 4193396k(1615584k free), swap 8384932k(5290520k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.25-b02) for windows-amd64 JRE (1.8.0_25-b18), built on Oct 7 2014 14:25:37 by "java_re" with MS VC++ 10.0 (VS2010)
time: Fri May 22 23:50:01 2015
elapsed time: 29 seconds (0d 0h 0m 29s)
I found it:
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
...
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
All client states have to be deactivated after every call on NVIDIA components.
Related
I am getting EXCEPTION_ACCESS_VIOLATION when I am trying to send an image file to the service through my SOAP UI.
This issue seems to be related to the JVM. I have tried setting some parameters like -Dsun.java2d.d3d=false but still the problem persists. I've tried increasing the heap size too. Any help is appreciated.
#
# A fatal error has been detected by the Java Runtime Environment:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x023c172c, pid=5468, tid=20200
#
# JRE version: Java(TM) SE Runtime Environment (7.0_55-b13) (build 1.7.0_55-b13)
# Java VM: Java HotSpot(TM) Client VM (24.55-b03 mixed mode windows-x86 )
# Problematic frame:
# C [fontmanager.dll+0x172c]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
---------- T H R E A D --------
Current thread (0x05c7a800): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=20200, stack(0x055f0000,0x05640000)]
siginfo: ExceptionCode=0xc0000005, writing address 0x00000000
Registers:
EAX=0x063e96a0, EBX=0x01dd2fac, ECX=0x00000008, EDX=0x00000008
ESP=0x0563e07c, EBP=0x0563e0e0, ESI=0x00000000, EDI=0x05c7a930
EIP=0x023c172c, EFLAGS=0x00010212
Top of Stack: (sp=0x0563e07c)
0x0563e07c: 00000000 05c7a930 51043170 51043170
0x0563e08c: 3a418ab8 00043170 42d40000 437c0000
0x0563e09c: 0563e154 01dd2fac 74160691 00000000
0x0563e0ac: 063e96a0 51043170 0563e0a4 0563e0f0
0x0563e0bc: 0563ed40 6e6d068e 1f01cd95 fffffffe
0x0563e0cc: 0563e138 6c08147d 05c7a930 0563e154
0x0563e0dc: 00000022 6c176b28 023c1f27 05c7a930
0x0563e0ec: 0563e148 51043170 05c7a800 0563e138
Instructions: (pc=0x023c172c)
0x023c170c: 44 24 13 8b c3 c1 e0 05 83 c0 08 50 ff 15 c0 e0
0x023c171c: 3d 02 8b f0 8b 44 24 30 83 c4 04 8d 4e 08 6a 00
0x023c172c: 89 1e 89 4e 04 8b 17 8b 8a 78 03 00 00 50 57 ff
0x023c173c: d1 8b d8 89 5c 24 24 85 db 74 6e 80 7c 24 13 00
Register to memory mapping:
EAX=0x063e96a0 is an unknown value
EBX=0x01dd2fac is an unknown value
ECX=0x00000008 is an unknown value
EDX=0x00000008 is an unknown value
ESP=0x0563e07c is pointing into the stack for thread: 0x05c7a800
EBP=0x0563e0e0 is pointing into the stack for thread: 0x05c7a800
ESI=0x00000000 is an unknown value
EDI=0x05c7a930 is an unknown value
Stack: [0x055f0000,0x05640000], sp=0x0563e07c, free space=312k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [fontmanager.dll+0x172c]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j sun.java2d.loops.DrawGlyphListLCD.DrawGlyphListLCD(Lsun/java2d/SunGraphics2D;Lsun/java2d/SurfaceData;Lsun/font/GlyphList;)V+0
j sun.java2d.pipe.LCDTextRenderer.drawGlyphList(Lsun/java2d/SunGraphics2D;Lsun/font/GlyphList;)V+13
j sun.java2d.pipe.GlyphListPipe.drawChars(Lsun/java2d/SunGraphics2D;[CIIII)V+167
j sun.java2d.SunGraphics2D.drawChars([CIIII)V+106
J org.fife.ui.rsyntaxtextarea.DefaultTokenPainter.paintImpl(Lorg/fife/ui/rsyntaxtextarea/Token;Ljava/awt/Graphics2D;FFLorg/fife/ui/rsyntaxtextarea/RSyntaxTextArea;Ljavax/swing/text/TabExpander;FZ)F
j org.fife.ui.rsyntaxtextarea.DefaultTokenPainter.paint(Lorg/fife/ui/rsyntaxtextarea/Token;Ljava/awt/Graphics2D;FFLorg/fife/ui/rsyntaxtextarea/RSyntaxTextArea;Ljavax/swing/text/TabExpander;F)F+13
j org.fife.ui.rsyntaxtextarea.SyntaxView.drawLine(Lorg/fife/ui/rsyntaxtextarea/TokenPainter;Lorg/fife/ui/rsyntaxtextarea/Token;Ljava/awt/Graphics2D;FF)F+45
j org.fife.ui.rsyntaxtextarea.SyntaxView.paint(Ljava/awt/Graphics;Ljava/awt/Shape;)V+368
j javax.swing.plaf.basic.BasicTextUI$RootView.paint(Ljava/awt/Graphics;Ljava/awt/Shape;)V+48
j javax.swing.plaf.basic.BasicTextUI.paintSafely(Ljava/awt/Graphics;)V+65
j javax.swing.plaf.basic.BasicTextUI.paint(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+45
j javax.swing.plaf.basic.BasicTextUI.update(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+3
j org.fife.ui.rtextarea.RTextAreaBase.paintComponent(Ljava/awt/Graphics;)V+31
j org.fife.ui.rsyntaxtextarea.RSyntaxTextArea.paintComponent(Ljava/awt/Graphics;)V+6
j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+286
J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+318
j javax.swing.JViewport.paint(Ljava/awt/Graphics;)V+205
J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+318
j javax.swing.JComponent.paintToOffscreen(Ljava/awt/Graphics;IIIIII)V+41
j javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(Ljavax/swing/JComponent;Ljava/awt/Image;Ljava/awt/Graphics;IIII)V+163
j javax.swing.RepaintManager$PaintManager.paint(Ljavax/swing/JComponent;Ljavax/swing/JComponent;Ljava/awt/Graphics;IIII)Z+116
j javax.swing.RepaintManager.paint(Ljavax/swing/JComponent;Ljavax/swing/JComponent;Ljava/awt/Graphics;IIII)V+52
j javax.swing.JComponent._paintImmediately(IIII)V+683
j javax.swing.JComponent.paintImmediately(IIII)V+138
j javax.swing.RepaintManager$3.run()Ljava/lang/Void;+75
j javax.swing.RepaintManager$3.run()Ljava/lang/Object;+1
v ~StubRoutines::call_stub
J java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
J java.security.ProtectionDomain$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;
j javax.swing.RepaintManager.paintDirtyRegions(Ljava/util/Map;)V+154
j javax.swing.RepaintManager.paintDirtyRegions()V+46
j javax.swing.RepaintManager.prePaintDirtyRegions()V+73
j javax.swing.RepaintManager.access$1100(Ljavax/swing/RepaintManager;)V+1
j javax.swing.RepaintManager$ProcessingRunnable.run()V+37
j java.awt.event.InvocationEvent.dispatch()V+47
j java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+21
j java.awt.EventQueue.access$200(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
j java.awt.EventQueue$3.run()Ljava/lang/Void;+12
j java.awt.EventQueue$3.run()Ljava/lang/Object;+1
v ~StubRoutines::call_stub
J java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
J java.security.ProtectionDomain$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;
j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+46
J java.awt.EventDispatchThread.pumpOneEventForFilters(I)V
j java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+35
j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11
j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
j java.awt.EventDispatchThread.run()V+9
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x05d1bc00 JavaThread "Prism Font Disposer" daemon [_thread_blocked, id=22352, stack(0x0b510000,0x0b560000)]
0x05d1b000 JavaThread "Disposer" daemon [_thread_blocked, id=14820, stack(0x07270000,0x072c0000)]
0x05d1a800 JavaThread "Thread-14" daemon [_thread_in_native, id=17600, stack(0x0b450000,0x0b4a0000)]
0x05d1a400 JavaThread "JavaFX Application Thread" [_thread_in_native, id=8560, stack(0x09ef0000,0x09f40000)]
0x05d19c00 JavaThread "Thread-13" daemon [_thread_blocked, id=17548, stack(0x076f0000,0x07740000)]
0x05d19800 JavaThread "Disposer" daemon [_thread_blocked, id=20688, stack(0x09dc0000,0x09e10000)]
0x05d19000 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=13124, stack(0x073d0000,0x07420000)]
0x05d18c00 JavaThread "GC Daemon" daemon [_thread_blocked, id=19144, stack(0x08560000,0x085b0000)]
0x05d18400 JavaThread "RMI Reaper" [_thread_blocked, id=21512, stack(0x02330000,0x02380000)]
0x05d17c00 JavaThread "RMI TCP Accept-1198" daemon [_thread_in_native, id=21664, stack(0x02280000,0x022d0000)]
0x05d17000 JavaThread "TimerQueue" daemon [_thread_blocked, id=22192, stack(0x05ea0000,0x05ef0000)]
0x06aa3800 JavaThread "MemoryMonitor" daemon [_thread_blocked, id=1848, stack(0x06fe0000,0x07030000)]
0x06a50800 JavaThread "Thread-7" [_thread_blocked, id=12308, stack(0x077c0000,0x07810000)]
0x06920800 JavaThread "Thread-6" [_thread_blocked, id=8912, stack(0x07760000,0x077b0000)]
0x0694fc00 JavaThread "Thread-5" daemon [_thread_blocked, id=15864, stack(0x07190000,0x071e0000)]
0x064df000 JavaThread "Thread-4" [_thread_blocked, id=10532, stack(0x06de0000,0x06e30000)]
0x05dcf800 JavaThread "Thread-3" daemon [_thread_blocked, id=21740, stack(0x056c0000,0x05710000)]
0x0217fc00 JavaThread "DestroyJavaVM" [_thread_blocked, id=19660, stack(0x02450000,0x024a0000)]
=>0x05c7a800 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=20200, stack(0x055f0000,0x05640000)]
0x05c7a000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=20040, stack(0x06330000,0x06380000)]
0x05c75800 JavaThread "AWT-Shutdown" [_thread_blocked, id=11424, stack(0x06190000,0x061e0000)]
0x05c37000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=21452, stack(0x05fc0000,0x06010000)]
0x05c2d400 JavaThread "Timer-0" [_thread_blocked, id=9580, stack(0x05f30000,0x05f80000)]
0x04c27800 JavaThread "Service Thread" daemon [_thread_blocked, id=18104, stack(0x05970000,0x059c0000)]
0x04c22000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=17420, stack(0x05850000,0x058a0000)]
0x04c20c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=15156, stack(0x05710000,0x05760000)]
0x04bf1400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=15160, stack(0x057f0000,0x05840000)]
0x04bed000 JavaThread "Finalizer" daemon [_thread_blocked, id=21408, stack(0x02180000,0x021d0000)]
0x04be8000 JavaThread "Reference Handler" daemon [_thread_blocked, id=21540, stack(0x05210000,0x05260000)]
Other Threads:
0x04be5c00 VMThread [stack: 0x04f40000,0x04f90000] [id=7208]
0x04c41400 WatcherThread [stack: 0x05a00000,0x05a50000] [id=15244]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
def new generation total 256832K, used 510K [0x10080000, 0x21720000, 0x255d0000)
eden space 228352K, 0% used [0x10080000, 0x100ff8a8, 0x1df80000)
from space 28480K, 0% used [0x1df80000, 0x1df80000, 0x1fb50000)
to space 28480K, 0% used [0x1fb50000, 0x1fb50000, 0x21720000)
tenured generation total 699072K, used 586626K [0x255d0000, 0x50080000, 0x50080000)
the space 699072K, 83% used [0x255d0000, 0x492b0828, 0x492b0a00, 0x50080000)
compacting perm gen total 28672K, used 28503K [0x50080000, 0x51c80000, 0x54080000)
the space 28672K, 99% used [0x50080000, 0x51c55d68, 0x51c55e00, 0x51c80000)
No shared spaces configured.
Card table byte_map: [0x04840000,0x04a70000] byte_map_base: 0x047bfc00
Polling page: 0x001f0000
Code Cache [0x02840000, 0x02bc8000, 0x04840000)
total_blobs=2197 nmethods=1804 adapters=327 free_code_cache=29170Kb largest_free_block=29868416
Compilation events (10 events):
Event: 93.820 Thread 0x04c22000 1836 com.jgoodies.forms.layout.FormLayout::sum (25 bytes)
Event: 93.821 Thread 0x04c22000 nmethod 1836 0x02bbf988 code [0x02bbfa80, 0x02bbfb40]
Event: 94.040 Thread 0x04c22000 1837 % org.fife.ui.rsyntaxtextarea.DefaultTokenPainter::paintImpl # 107 (421 bytes)
Event: 94.043 Thread 0x04c22000 nmethod 1837% 0x02bbfc08 code [0x02bbfed0, 0x02bc0c0c]
Event: 94.805 Thread 0x04c22000 1838 sun.font.CompositeGlyphMapper::getCachedGlyphCode (32 bytes)
Event: 94.805 Thread 0x04c22000 nmethod 1838 0x02bc1c88 code [0x02bc1d90, 0x02bc1e90]
Event: 94.805 Thread 0x04c22000 1839 % sun.font.CompositeGlyphMapper::charsToGlyphsNS # 3 (158 bytes)
Event: 94.806 Thread 0x04c22000 nmethod 1839% 0x02bc1fc8 code [0x02bc2100, 0x02bc2438]
Event: 95.001 Thread 0x04c22000 1840 % sun.font.FileFontStrike::getSlot0GlyphImagePtrs # 6 (128 bytes)
Event: 95.002 Thread 0x04c22000 nmethod 1840% 0x02bc28c8 code [0x02bc2aa0, 0x02bc33d4]
GC Heap History (10 events):
Event: 92.251 GC heap before
{Heap before GC invocations=22 (full 7):
def new generation total 121088K, used 62203K [0x10080000, 0x183e0000, 0x255d0000)
eden space 107648K, 57% used [0x10080000, 0x13d3edf8, 0x169a0000)
from space 13440K, 0% used [0x169a0000, 0x169a0000, 0x176c0000)
to space 13440K, 0% used [0x176c0000, 0x176c0000, 0x183e0000)
tenured generation total 268948K, used 161368K [0x255d0000, 0x35c75000, 0x50080000)
the space 268948K, 59% used [0x255d0000, 0x2f366168, 0x2f366200, 0x35c75000)
compacting perm gen total 28672K, used 28444K [0x50080000, 0x51c80000, 0x54080000)
the space 28672K, 99% used [0x50080000, 0x51c472c8, 0x51c47400, 0x51c80000)
No shared spaces configured.
Event: 92.270 GC heap after
Heap after GC invocations=23 (full 7):
def new generation total 121088K, used 0K [0x10080000, 0x183e0000, 0x255d0000)
eden space 107648K, 0% used [0x10080000, 0x10080000, 0x169a0000)
from space 13440K, 0% used [0x176c0000, 0x176c0040, 0x183e0000)
to space 13440K, 0% used [0x169a0000, 0x169a0000, 0x176c0000)
tenured generation total 268948K, used 222450K [0x255d0000, 0x35c75000, 0x50080000)
the space 268948K, 82% used [0x255d0000, 0x32f0cae0, 0x32f0cc00, 0x35c75000)
compacting perm gen total 28672K, used 28444K [0x50080000, 0x51c80000, 0x54080000)
the space 28672K, 99% used [0x50080000, 0x51c472c8, 0x51c47400, 0x51c80000)
No shared spaces configured.
}
Event: 92.299 GC heap before
{Heap before GC invocations=23 (full 7):
def new generation total 121088K, used 62397K [0x10080000, 0x183e0000, 0x255d0000)
eden space 107648K, 57% used [0x10080000, 0x13d6f570, 0x169a0000)
from space 13440K, 0% used [0x176c0000, 0x176c0040, 0x183e0000)
to space 13440K, 0% used [0x169a0000, 0x169a0000, 0x176c0000)
tenured generation total 268948K, used 222450K [0x255d0000, 0x35c75000, 0x50080000)
the space 268948K, 82% used [0x255d0000, 0x32f0cae0, 0x32f0cc00, 0x35c75000)
compacting perm gen total 28672K, used 28444K [0x50080000, 0x51c80000, 0x54080000)
the space 28672K, 99% used [0x50080000, 0x51c472c8, 0x51c47400, 0x51c80000)
No shared spaces configured.
Event: 92.503 GC heap after
Heap after GC invocations=24 (full 8):
def new generation total 165248K, used 0K [0x10080000, 0x1b3c0000, 0x255d0000)
eden space 146944K, 0% used [0x10080000, 0x10080000, 0x19000000)
from space 18304K, 0% used [0x19000000, 0x19000000, 0x1a1e0000)
to space 18304K, 0% used [0x1a1e0000, 0x1a1e0000, 0x1b3c0000)
tenured generation total 366964K, used 220177K [0x255d0000, 0x3bc2d000, 0x50080000)
the space 366964K, 59% used [0x255d0000, 0x32cd47d8, 0x32cd4800, 0x3bc2d000)
compacting perm gen total 28672K, used 28436K [0x50080000, 0x51c80000, 0x54080000)
the space 28672K, 99% used [0x50080000, 0x51c45210, 0x51c45400, 0x51c80000)
Deoptimization events (0 events):
No events
Internal exceptions (10 events):
Event: 83.320 Thread 0x05c7a800 Threw 0x1010ef08 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.367 Thread 0x05c7a800 Threw 0x13c2bd98 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.367 Thread 0x05c7a800 Threw 0x13c43810 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.369 Thread 0x05c7a800 Threw 0x13c59de8 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.370 Thread 0x05c7a800 Threw 0x13c66cc8 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.370 Thread 0x05c7a800 Threw 0x17852aa0 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.371 Thread 0x05c7a800 Threw 0x1785e6e0 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.371 Thread 0x05c7a800 Threw 0x17868d50 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.371 Thread 0x05c7a800 Threw 0x17874ef0 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 93.376 Thread 0x05c7a800 Threw 0x17882ac0 at C:\re\jdk7u55\869\hotspot\src\share\vm\prims\jvm.cpp:1244
Events (10 events):
Event: 93.371 loading class 0x0cfa2ff8
Event: 93.371 loading class 0x0cfa2ff8 done
Event: 93.376 loading class 0x0d089288
Event: 93.376 loading class 0x0d089288 done
Event: 94.254 Executing VM operation: GenCollectForAllocation
Event: 94.278 Executing VM operation: GenCollectForAllocation done
Event: 94.294 Executing VM operation: GenCollectForAllocation
Event: 94.547 Executing VM operation: GenCollectForAllocation done
Event: 94.555 Executing VM operation: GenCollectForAllocation
Event: 94.661 Executing VM operation: GenCollectForAllocation done
Dynamic libraries:
0x00b60000 - 0x00b8f000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\java.exe
0x77c10000 - 0x77d90000 C:\windows\SysWOW64\ntdll.dll
0x758a0000 - 0x759b0000 C:\windows\syswow64\kernel32.dll
0x772e0000 - 0x77327000 C:\windows\syswow64\KERNELBASE.dll
0x752b0000 - 0x7532f000 C:\windows\SysWOW64\SYSFER.DLL
0x76500000 - 0x765a1000 C:\windows\syswow64\ADVAPI32.dll
0x75e00000 - 0x75eac000 C:\windows\syswow64\msvcrt.dll
0x75780000 - 0x75799000 C:\windows\SysWOW64\sechost.dll
0x77360000 - 0x77450000 C:\windows\syswow64\RPCRT4.dll
0x754c0000 - 0x75520000 C:\windows\syswow64\SspiCli.dll
0x754b0000 - 0x754bc000 C:\windows\syswow64\CRYPTBASE.dll
0x76050000 - 0x76150000 C:\windows\syswow64\USER32.dll
0x777a0000 - 0x77830000 C:\windows\syswow64\GDI32.dll
0x77700000 - 0x7770a000 C:\windows\syswow64\LPK.dll
0x76220000 - 0x762bd000 C:\windows\syswow64\USP10.dll
0x71840000 - 0x719de000 C:\windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.23403_none_2b180b30457f196c\COMCTL32.dll
0x75570000 - 0x755c7000 C:\windows\syswow64\SHLWAPI.dll
0x75720000 - 0x75780000 C:\windows\system32\IMM32.DLL
0x76150000 - 0x7621d000 C:\windows\syswow64\MSCTF.dll
0x746e0000 - 0x746ef000 C:\windows\system32\PGPmapih.dll
0x01f90000 - 0x0204f000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\msvcr100.dll
0x6e440000 - 0x6e7c0000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\client\jvm.dll
0x72e60000 - 0x72e67000 C:\windows\system32\WSOCK32.dll
0x75dc0000 - 0x75df5000 C:\windows\syswow64\WS2_32.dll
0x75eb0000 - 0x75eb6000 C:\windows\syswow64\NSI.dll
0x6da40000 - 0x6da72000 C:\windows\system32\WINMM.dll
0x76000000 - 0x76005000 C:\windows\syswow64\PSAPI.DLL
0x54950000 - 0x54985000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\splashscreen.dll
0x70cf0000 - 0x70d70000 C:\windows\system32\uxtheme.dll
0x6f7c0000 - 0x6f7cc000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\verify.dll
0x63ed0000 - 0x63ef0000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\java.dll
0x69f40000 - 0x69f4e000 C:\windows\system32\PGPhk.dll
0x10000000 - 0x10072000 C:\Program Files (x86)\PolicyPak\Application Manager\Client\17.12.1560\PPAppLockLdr32.dll
0x765b0000 - 0x771fc000 C:\windows\syswow64\SHELL32.dll
0x73aa0000 - 0x73aa3000 C:\windows\system32\api-ms-win-core-synch-l1-2-0.DLL
0x63fb0000 - 0x63fc3000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\zip.dll
0x75c60000 - 0x75dbd000 C:\windows\system32\ole32.dll
0x63eb0000 - 0x63ec4000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\net.dll
0x74590000 - 0x745cc000 C:\windows\system32\mswsock.dll
0x74280000 - 0x74286000 C:\windows\System32\wship6.dll
0x69020000 - 0x6902f000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\nio.dll
0x6c080000 - 0x6c1c3000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\awt.dll
0x75a20000 - 0x75ab1000 C:\windows\syswow64\OLEAUT32.dll
0x6afa0000 - 0x6afb3000 C:\windows\system32\dwmapi.dll
0x6f8e0000 - 0x6f8ea000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\management.dll
0x63e90000 - 0x63eb0000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\sunec.dll
0x63fa0000 - 0x63fa9000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\sunmscapi.dll
0x75ed0000 - 0x75ff1000 C:\windows\syswow64\CRYPT32.dll
0x75ec0000 - 0x75ecc000 C:\windows\syswow64\MSASN1.dll
0x74560000 - 0x74577000 C:\windows\system32\CRYPTSP.dll
0x74520000 - 0x7455b000 C:\windows\system32\rsaenh.dll
0x757d0000 - 0x757e9000 C:\windows\syswow64\USERENV.dll
0x757c0000 - 0x757cb000 C:\windows\syswow64\profapi.dll
0x74360000 - 0x7437c000 C:\windows\system32\IPHLPAPI.DLL
0x74350000 - 0x74357000 C:\windows\system32\WINNSI.DLL
0x74380000 - 0x74392000 C:\windows\system32\dhcpcsvc.DLL
0x74340000 - 0x7434d000 C:\windows\system32\dhcpcsvc6.DLL
0x67d80000 - 0x67d90000 C:\windows\system32\NLAapi.dll
0x67d70000 - 0x67d80000 C:\windows\system32\napinsp.dll
0x67d50000 - 0x67d62000 C:\windows\system32\pnrpnsp.dll
0x67d40000 - 0x67d4d000 C:\windows\system32\wshbth.dll
0x717f0000 - 0x71834000 C:\windows\system32\DNSAPI.dll
0x67d30000 - 0x67d38000 C:\windows\System32\winrnr.dll
0x74580000 - 0x74585000 C:\windows\System32\wshtcpip.dll
0x6d5a0000 - 0x6d5a6000 C:\windows\system32\rasadhlp.dll
0x74240000 - 0x74278000 C:\windows\System32\fwpuclnt.dll
0x023c0000 - 0x023f9000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\fontmanager.dll
0x54e80000 - 0x54eb0000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\t2k.dll
0x77710000 - 0x77793000 C:\windows\syswow64\CLBCatQ.DLL
0x68ee0000 - 0x69011000 C:\windows\system32\WindowsCodecs.dll
0x6c630000 - 0x6c67c000 C:\windows\system32\apphelp.dll
0x0f2a0000 - 0x0f424000 C:\Users\AppData\Local\Microsoft\OneDrive\17.3.6301.0127\FileSyncShell.dll
0x0fef0000 - 0x0ff61000 C:\Users\AppData\Local\Microsoft\OneDrive\17.3.6301.0127\MSVCP120.dll
0x0f510000 - 0x0f5fe000 C:\Users\AppData\Local\Microsoft\OneDrive\17.3.6301.0127\MSVCR120.dll
0x0fa00000 - 0x0fa4d000 C:\Users\AppData\Local\Microsoft\OneDrive\17.3.6301.0127\Telemetry.dll
0x0fb40000 - 0x0fb5c000 C:\Users\AppData\Local\Microsoft\OneDrive\17.3.6301.0127\LoggingPlatform.DLL
0x74780000 - 0x74789000 C:\windows\system32\VERSION.dll
0x6bab0000 - 0x6bac5000 C:\windows\system32\Cabinet.dll
0x72b50000 - 0x72ba8000 C:\windows\system32\WINHTTP.dll
0x72b00000 - 0x72b50000 C:\windows\system32\webio.dll
0x77450000 - 0x776fb000 C:\windows\syswow64\WININET.dll
0x77290000 - 0x77294000 C:\windows\syswow64\api-ms-win-downlevel-user32-l1-1-0.dll
0x757a0000 - 0x757a4000 C:\windows\syswow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
0x76040000 - 0x76044000 C:\windows\syswow64\api-ms-win-downlevel-version-l1-1-0.dll
0x757b0000 - 0x757b3000 C:\windows\syswow64\api-ms-win-downlevel-normaliz-l1-1-0.dll
0x77350000 - 0x77353000 C:\windows\syswow64\normaliz.DLL
0x762c0000 - 0x764f6000 C:\windows\syswow64\iertutil.dll
0x759b0000 - 0x759b5000 C:\windows\syswow64\api-ms-win-downlevel-advapi32-l1-1-0.dll
0x0fd50000 - 0x0fe78000 C:\windows\SysWOW64\PGPfsshl.dll
0x73fc0000 - 0x73fd2000 C:\windows\SysWOW64\MPR.dll
0x73fa0000 - 0x73fb1000 C:\windows\SysWOW64\NETAPI32.dll
0x73f90000 - 0x73f99000 C:\windows\SysWOW64\netutils.dll
0x73f70000 - 0x73f89000 C:\windows\SysWOW64\srvcli.dll
0x73f60000 - 0x73f6f000 C:\windows\SysWOW64\wkscli.dll
0x69f50000 - 0x69f5d000 C:\windows\system32\DFSCLI.DLL
0x0b6b0000 - 0x0b6e1000 C:\windows\system32\EhStorShell.dll
0x75ac0000 - 0x75c5d000 C:\windows\syswow64\SETUPAPI.dll
0x772b0000 - 0x772d7000 C:\windows\syswow64\CFGMGR32.dll
0x77330000 - 0x77342000 C:\windows\syswow64\DEVOBJ.dll
0x73b80000 - 0x73c75000 C:\windows\system32\PROPSYS.dll
0x69030000 - 0x690a0000 C:\windows\system32\ntshrui.dll
0x6fcf0000 - 0x6fcfb000 C:\windows\system32\cscapi.dll
0x741a0000 - 0x741aa000 C:\windows\system32\slc.dll
0x63f70000 - 0x63f7d000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\prism-d3d.dll
0x07420000 - 0x075e3000 C:\windows\system32\d3d9.dll
0x00810000 - 0x00816000 C:\windows\system32\d3d8thk.dll
0x086f0000 - 0x09d56000 C:\windows\system32\igdumdim32.dll
0x54bc0000 - 0x54be7000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\glass.dll
0x757f0000 - 0x7586b000 C:\windows\syswow64\COMDLG32.dll
0x5e960000 - 0x5f1cd000 C:\windows\system32\igdusc32.dll
0x6d400000 - 0x6d47c000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\libxml2.dll
0x54460000 - 0x5448a000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\libxslt.dll
0x0b6f0000 - 0x0c250000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\jfxwebkit.dll
0x54420000 - 0x5445d000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\javafx-font.dll
0x77da0000 - 0x77dc4000 C:\SoapUI-5.1.3\SoapUI-5.1.3\jre\bin\dcpr.dll
0x745f0000 - 0x746db000 C:\windows\system32\dbghelp.dll
VM Arguments:
jvm_args: -Xms128m -Xmx1024m -Dsoapui.properties=soapui.properties -Dsoapui.home=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\ -Dsoapui.https.protocols=TLSv1.2 -Dsun.java2d.d3d=false -Dsoapui.ext.libraries=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\ext -Dsoapui.ext.listeners=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\listeners -Dsoapui.ext.actions=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\actions -Djava.library.path=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\ -Dwsi.dir=C:\SoapUI-5.1.3\SoapUI-5.1.3\bin\..\wsi-test-tools
java_command: com.eviware.soapui.SoapUI
Launcher Type: SUN_STANDARD
For my experience, this kind of error is usually due to a poor interaction with the JVM and the underlying window GFX driver. I suggest updating your version of Java 7 to the latest (update 79) and ensure you have have the latest windows updates.
NOTE: This can happen if you run Java on a OS version which isn't supported.
If you can't update to Java 8, you might want to start planning to update to Java 11 which is the next Long Term Support release.
After importing my project to my school computer using IntelliJ's Version Control, I went to test my project, but was met with this error upon running:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fff45fcecfd, pid=4344, tid=0x0000000000002a8c
#
# JRE version: Java(TM) SE Runtime Environment (8.0_144-b01) (build 1.8.0_144-b01)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.144-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [lwjgl_opengl.dll+0xecfd]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# 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.
#
I checked out the log file, and it looks like this:
--------------- T H R E A D ---------------
Current thread (0x00000000174df000): JavaThread "Finalizer" daemon [_thread_in_native, id=10892, stack(0x0000000018750000,0x0000000018850000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000009d8
Registers:
RAX=0x0000000055b41d50, RBX=0x000000001710c080, RCX=0x0000000000000001, RDX=0x0000000019a6812c
RSP=0x000000001884ee68, RBP=0x000000001884eee8, RSI=0x0000000019a6812c, RDI=0x000000000299835d
R8 =0x0000000000000001, R9 =0x0000000019a6812c, R10=0x0000000000000000, R11=0x00000000555cbc50
R12=0x0000000000000000, R13=0x000000001710c080, R14=0x000000001884ef18, R15=0x00000000174df000
RIP=0x00007fff45fcecfd, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x000000001884ee68)
0x000000001884ee68: 00000000029a7f74 000000000299835d
0x000000001884ee78: 00000000029a7ceb 00000000174df000
0x000000001884ee88: 000000001710c080 0000000019a6812c
0x000000001884ee98: 00000000174df000 00000000029a7ca2
0x000000001884eea8: 000000001884eea8 000000001710c080
0x000000001884eeb8: 000000001884ef18 00000000170d6d90
0x000000001884eec8: 0000000000000000 000000001710c080
0x000000001884eed8: 0000000000000000 000000001884ef08
0x000000001884eee8: 000000001884ef60 000000000299835d
0x000000001884eef8: 00000000d7dad188 00000000029a19d8
0x000000001884ef08: 0000000019a6812c 00000000d5da3138
0x000000001884ef18: 0000000000000001 000000001884ef20
0x000000001884ef28: 000000001710c1d4 000000001884ef90
0x000000001884ef38: 00000000170d6d90 0000000000000000
0x000000001884ef48: 000000001710c240 000000001884ef08
0x000000001884ef58: 000000001884ef90 000000001884efd8
Instructions: (pc=0x00007fff45fcecfd)
0x00007fff45fcecdd: 49 ff a2 00 0f 00 00 cc cc cc cc cc cc cc cc cc
0x00007fff45fceced: cc cc cc 48 8b 01 49 8b d1 41 8b c8 4c 8b 50 18
0x00007fff45fcecfd: 49 ff a2 d8 09 00 00 cc cc cc cc cc cc cc cc cc
0x00007fff45fced0d: cc cc cc 48 8b 01 49 8b d1 41 8b c8 4c 8b 50 18
Register to memory mapping:
RAX=0x0000000055b41d50 is an unknown value
RBX={method} {0x000000001710c088} 'nglDeleteTextures' '(IJ)V' in 'org/lwjgl/opengl/GL11'
RCX=0x0000000000000001 is an unknown value
RDX=0x0000000019a6812c is an unknown value
RSP=0x000000001884ee68 is pointing into the stack for thread: 0x00000000174df000
RBP=0x000000001884eee8 is pointing into the stack for thread: 0x00000000174df000
RSI=0x0000000019a6812c is an unknown value
RDI=0x000000000299835d is at code_begin+2301 in an Interpreter codelet
invoke return entry points [0x0000000002997a60, 0x0000000002998440] 2528 bytes
R8 =0x0000000000000001 is an unknown value
R9 =0x0000000019a6812c is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x00000000555cbc50 is an unknown value
R12=0x0000000000000000 is an unknown value
R13={method} {0x000000001710c088} 'nglDeleteTextures' '(IJ)V' in 'org/lwjgl/opengl/GL11'
R14=0x000000001884ef18 is pointing into the stack for thread: 0x00000000174df000
R15=0x00000000174df000 is a thread
Stack: [0x0000000018750000,0x0000000018850000], sp=0x000000001884ee68, free space=1019k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [lwjgl_opengl.dll+0xecfd]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.lwjgl.opengl.GL11.nglDeleteTextures(IJ)V+0
j org.lwjgl.opengl.GL11.glDeleteTextures(I)V+20
j nitrodragon.render.Texture.finalize()V+4
j java.lang.System$2.invokeFinalize(Ljava/lang/Object;)V+1
j java.lang.ref.Finalizer.runFinalizer(Lsun/misc/JavaLangAccess;)V+46
j java.lang.ref.Finalizer.access$100(Ljava/lang/ref/Finalizer;Lsun/misc/JavaLangAccess;)V+2
j java.lang.ref.Finalizer$FinalizerThread.run()V+45
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00000000199e5000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=6692, stack(0x000000001e6d0000,0x000000001e7d0000)]
0x0000000018d4e000 JavaThread "Service Thread" daemon [_thread_blocked, id=7596, stack(0x0000000019340000,0x0000000019440000)]
0x0000000018d20800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=8948, stack(0x0000000019240000,0x0000000019340000)]
0x0000000018cc7800 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=10968, stack(0x0000000019140000,0x0000000019240000)]
0x0000000018cc3800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=9996, stack(0x0000000019040000,0x0000000019140000)]
0x0000000018c74800 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=10044, stack(0x0000000018f40000,0x0000000019040000)]
0x00000000174ef800 JavaThread "Attach Listener" daemon [_thread_blocked, id=9520, stack(0x0000000018a40000,0x0000000018b40000)]
0x00000000028be800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4548, stack(0x0000000018940000,0x0000000018a40000)]
=>0x00000000174df000 JavaThread "Finalizer" daemon [_thread_in_native, id=10892, stack(0x0000000018750000,0x0000000018850000)]
0x00000000028b5000 JavaThread "Reference Handler" daemon [_thread_blocked, id=11216, stack(0x0000000018650000,0x0000000018750000)]
0x00000000027c4000 JavaThread "main" [_thread_in_Java, id=10556, stack(0x0000000002490000,0x0000000002590000)]
Other Threads:
0x00000000174b7800 VMThread [stack: 0x0000000018550000,0x0000000018650000] [id=6940]
0x0000000018e3f800 WatcherThread [stack: 0x0000000019440000,0x0000000019540000] [id=11940]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 38400K, used 6424K [0x00000000d5d00000, 0x00000000da800000, 0x0000000100000000)
eden space 33280K, 3% used [0x00000000d5d00000,0x00000000d5e49658,0x00000000d7d80000)
from space 5120K, 99% used [0x00000000d7d80000,0x00000000d827cd58,0x00000000d8280000)
to space 5120K, 0% used [0x00000000da300000,0x00000000da300000,0x00000000da800000)
ParOldGen total 87552K, used 337K [0x0000000081600000, 0x0000000086b80000, 0x00000000d5d00000)
object space 87552K, 0% used [0x0000000081600000,0x00000000816545b0,0x0000000086b80000)
Metaspace used 10730K, capacity 10899K, committed 11136K, reserved 1058816K
class space used 974K, capacity 1069K, committed 1152K, reserved 1048576K
Card table byte_map: [0x0000000011d50000,0x0000000012150000] byte_map_base: 0x0000000011945000
Marking Bits: (ParMarkBitMap*) 0x0000000055bbd850
Begin Bits: [0x0000000012800000, 0x00000000147a8000)
End Bits: [0x00000000147a8000, 0x0000000016750000)
Polling page: 0x0000000000b90000
CodeCache: size=245760Kb used=3392Kb max_used=3405Kb free=242367Kb
bounds [0x0000000002990000, 0x0000000002cf0000, 0x0000000011990000]
total_blobs=1738 nmethods=881 adapters=768
compilation: enabled
Compilation events (10 events):
Event: 2.195 Thread 0x0000000018cc7800 864 4 org.joml.Matrix4f::mul (7 bytes)
Event: 2.195 Thread 0x0000000018cc3800 nmethod 869 0x0000000002cd8d50 code [0x0000000002cd8ee0, 0x0000000002cd9528]
Event: 2.195 Thread 0x0000000018cc3800 865 4 nitrodragon.render.Shader::setUniform (20 bytes)
Event: 2.196 Thread 0x0000000018d20800 877 3 java.nio.Bits::tryReserveMemory (51 bytes)
Event: 2.196 Thread 0x0000000018d20800 nmethod 877 0x0000000002cdb290 code [0x0000000002cdb420, 0x0000000002cdba50]
Event: 2.197 Thread 0x0000000018cc7800 nmethod 864 0x0000000002cdd490 code [0x0000000002cdd5e0, 0x0000000002cdd768]
Event: 2.198 Thread 0x0000000018cc7800 878 ! 4 java.lang.ref.Reference::tryHandlePending (115 bytes)
Event: 2.198 Thread 0x0000000018d20800 879 ! 3 java.util.zip.ZipFile$ZipFileInflaterInputStream::close (67 bytes)
Event: 2.199 Thread 0x0000000018d20800 nmethod 879 0x0000000002cda4d0 code [0x0000000002cda6a0, 0x0000000002cdae98]
Event: 2.199 Thread 0x0000000018d20800 880 3 sun.misc.VM::addFinalRefCount (24 bytes)
GC Heap History (2 events):
Event: 2.130 GC heap before
{Heap before GC invocations=1 (full 0):
PSYoungGen total 38400K, used 33280K [0x00000000d5d00000, 0x00000000d8780000, 0x0000000100000000)
eden space 33280K, 100% used [0x00000000d5d00000,0x00000000d7d80000,0x00000000d7d80000)
from space 5120K, 0% used [0x00000000d8280000,0x00000000d8280000,0x00000000d8780000)
to space 5120K, 0% used [0x00000000d7d80000,0x00000000d7d80000,0x00000000d8280000)
ParOldGen total 87552K, used 0K [0x0000000081600000, 0x0000000086b80000, 0x00000000d5d00000)
object space 87552K, 0% used [0x0000000081600000,0x0000000081600000,0x0000000086b80000)
Metaspace used 10724K, capacity 10899K, committed 11136K, reserved 1058816K
class space used 974K, capacity 1069K, committed 1152K, reserved 1048576K
Event: 2.182 GC heap after
Heap after GC invocations=1 (full 0):
PSYoungGen total 38400K, used 5107K [0x00000000d5d00000, 0x00000000da800000, 0x0000000100000000)
eden space 33280K, 0% used [0x00000000d5d00000,0x00000000d5d00000,0x00000000d7d80000)
from space 5120K, 99% used [0x00000000d7d80000,0x00000000d827cd58,0x00000000d8280000)
to space 5120K, 0% used [0x00000000da300000,0x00000000da300000,0x00000000da800000)
ParOldGen total 87552K, used 337K [0x0000000081600000, 0x0000000086b80000, 0x00000000d5d00000)
object space 87552K, 0% used [0x0000000081600000,0x00000000816545b0,0x0000000086b80000)
Metaspace used 10724K, capacity 10899K, committed 11136K, reserved 1058816K
class space used 974K, capacity 1069K, committed 1152K, reserved 1048576K
}
Deoptimization events (10 events):
Event: 2.183 Thread 0x00000000027c4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cce664 method=java.nio.Bits.tryReserveMemory(JI)Z # 29
Event: 2.183 Thread 0x00000000027c4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cca9a0 method=java.nio.Bits.tryReserveMemory(JI)Z # 29
Event: 2.184 Thread 0x00000000027c4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cc38d0 method=java.nio.Bits.tryReserveMemory(JI)Z # 29
Event: 2.192 Thread 0x00000000027c4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cc0500 method=java.nio.Bits.tryReserveMemory(JI)Z # 29
Event: 2.192 Thread 0x00000000027c4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cb38a0 method=java.nio.Bits.tryReserveMemory(JI)Z # 29
Event: 2.197 Thread 0x00000000028b5000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002cd94a8 method=java.lang.ref.Reference.tryHandlePending(Z)Z # 17
Event: 2.198 Thread 0x00000000028b5000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002cd94a8 method=java.lang.ref.Reference.tryHandlePending(Z)Z # 17
Event: 2.198 Thread 0x00000000028b5000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002cd94a8 method=java.lang.ref.Reference.tryHandlePending(Z)Z # 17
Event: 2.198 Thread 0x00000000028b5000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002cd94a8 method=java.lang.ref.Reference.tryHandlePending(Z)Z # 17
Event: 2.199 Thread 0x00000000174df000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002cb06ec method=java.lang.ThreadLocal.get()Ljava/lang/Object; # 11
Internal exceptions (10 events):
Event: 0.460 Thread 0x00000000027c4000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000d62ad5f0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.463 Thread 0x00000000027c4000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000d62bb498) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.558 Thread 0x00000000027c4000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64c3bb8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.558 Thread 0x00000000027c4000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64c3dc8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.559 Thread 0x00000000027c4000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64c7ec0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.559 Thread 0x00000000027c4000 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d64c80d0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.783 Thread 0x00000000027c4000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000d6770ae8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 0.783 Thread 0x00000000027c4000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000d6772558) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 1.258 Thread 0x00000000027c4000 Exception <a 'java/io/FileNotFoundException'> (0x00000000d71208d0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 2.199 Thread 0x00000000174df000 Implicit null exception at 0x0000000002cb061c to 0x0000000002cb06d5
Events (10 events):
Event: 2.198 Thread 0x00000000028b5000 DEOPT UNPACKING pc=0x00000000029d582a sp=0x000000001874f168 mode 2
Event: 2.198 Thread 0x00000000028b5000 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000002cd94a8
Event: 2.198 Thread 0x00000000028b5000 DEOPT PACKING pc=0x0000000002cd94a8 sp=0x000000001874f1c0
Event: 2.198 Thread 0x00000000028b5000 DEOPT UNPACKING pc=0x00000000029d582a sp=0x000000001874f168 mode 2
Event: 2.198 Thread 0x00000000028b5000 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000002cd94a8
Event: 2.198 Thread 0x00000000028b5000 DEOPT PACKING pc=0x0000000002cd94a8 sp=0x000000001874f1c0
Event: 2.198 Thread 0x00000000028b5000 DEOPT UNPACKING pc=0x00000000029d582a sp=0x000000001874f168 mode 2
Event: 2.199 Thread 0x00000000174df000 Uncommon trap: trap_request=0xffffff65 fr.pc=0x0000000002cb06ec
Event: 2.199 Thread 0x00000000174df000 DEOPT PACKING pc=0x0000000002cb06ec sp=0x000000001884ee80
Event: 2.199 Thread 0x00000000174df000 DEOPT UNPACKING pc=0x00000000029d582a sp=0x000000001884ee20 mode 2
Dynamic libraries:
0x00007ff6356c0000 - 0x00007ff6356f7000 C:\Program Files\Java\jdk1.8.0_144\bin\java.exe
0x00007fff5cdb0000 - 0x00007fff5cf8b000 C:\Windows\SYSTEM32\ntdll.dll
0x00007fff5a940000 - 0x00007fff5a9ee000 C:\Windows\System32\KERNEL32.DLL
0x00007fff596c0000 - 0x00007fff59909000 C:\Windows\System32\KERNELBASE.dll
0x00007fff5a890000 - 0x00007fff5a931000 C:\Windows\System32\ADVAPI32.dll
0x00007fff5ccf0000 - 0x00007fff5cd8d000 C:\Windows\System32\msvcrt.dll
0x00007fff5afa0000 - 0x00007fff5aff9000 C:\Windows\System32\sechost.dll
0x00007fff5a460000 - 0x00007fff5a585000 C:\Windows\System32\RPCRT4.dll
0x00007fff5b300000 - 0x00007fff5b44a000 C:\Windows\System32\USER32.dll
0x00007fff593d0000 - 0x00007fff593ee000 C:\Windows\System32\win32u.dll
0x00007fff5a7d0000 - 0x00007fff5a7f7000 C:\Windows\System32\GDI32.dll
0x00007fff59980000 - 0x00007fff59b08000 C:\Windows\System32\gdi32full.dll
0x00007fff592d0000 - 0x00007fff5936a000 C:\Windows\System32\msvcp_win.dll
0x00007fff595c0000 - 0x00007fff596b6000 C:\Windows\System32\ucrtbase.dll
0x00007fff4f480000 - 0x00007fff4f6e7000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll
0x00007fff5b000000 - 0x00007fff5b2f9000 C:\Windows\System32\combase.dll
0x00007fff59910000 - 0x00007fff5997a000 C:\Windows\System32\bcryptPrimitives.dll
0x00007fff5a740000 - 0x00007fff5a76d000 C:\Windows\System32\IMM32.DLL
0x0000000055c40000 - 0x0000000055d12000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\msvcr100.dll
0x00000000553a0000 - 0x0000000055c3d000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\server\jvm.dll
0x00007fff5a590000 - 0x00007fff5a598000 C:\Windows\System32\PSAPI.DLL
0x00007fff4f790000 - 0x00007fff4f799000 C:\Windows\SYSTEM32\WSOCK32.dll
0x00007fff5b7a0000 - 0x00007fff5b80c000 C:\Windows\System32\WS2_32.dll
0x00007fff4ca60000 - 0x00007fff4ca6a000 C:\Windows\SYSTEM32\VERSION.dll
0x00007fff57790000 - 0x00007fff577b3000 C:\Windows\SYSTEM32\WINMM.dll
0x00007fff57730000 - 0x00007fff5775b000 C:\Windows\SYSTEM32\WINMMBASE.dll
0x00007fff59b10000 - 0x00007fff59b59000 C:\Windows\System32\cfgmgr32.dll
0x0000000055390000 - 0x000000005539f000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\verify.dll
0x0000000055360000 - 0x0000000055389000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\java.dll
0x0000000055330000 - 0x0000000055353000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\instrument.dll
0x0000000055310000 - 0x0000000055326000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\zip.dll
0x00007fff5b8b0000 - 0x00007fff5cce7000 C:\Windows\System32\SHELL32.dll
0x00007fff5ae90000 - 0x00007fff5af3a000 C:\Windows\System32\shcore.dll
0x00007fff59b60000 - 0x00007fff5a252000 C:\Windows\System32\windows.storage.dll
0x00007fff5af40000 - 0x00007fff5af91000 C:\Windows\System32\shlwapi.dll
0x00007fff59290000 - 0x00007fff592a1000 C:\Windows\System32\kernel.appcore.dll
0x00007fff59240000 - 0x00007fff5928c000 C:\Windows\System32\powrprof.dll
0x00007fff59220000 - 0x00007fff59235000 C:\Windows\System32\profapi.dll
0x00007fff49380000 - 0x00007fff4939a000 C:\Program Files\JetBrains\IntelliJ IDEA 2017.2.3\bin\breakgen64.dll
0x00000000552f0000 - 0x000000005530a000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\net.dll
0x00007fff58ad0000 - 0x00007fff58b2c000 C:\Windows\system32\mswsock.dll
0x00000000552d0000 - 0x00000000552e1000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\nio.dll
0x00007fff47c20000 - 0x00007fff47c77000 C:\Users\reaganrussell\AppData\Local\Temp\lwjglreaganrussell\3.1.2-build-29\lwjgl.dll
0x00007fff48a70000 - 0x00007fff48aac000 C:\Users\REAGAN~1\AppData\Local\Temp\lwjglreaganrussell\3.1.2-build-29\jemalloc.dll
0x00007fff46960000 - 0x00007fff4699d000 C:\Users\REAGAN~1\AppData\Local\Temp\lwjglreaganrussell\3.1.2-build-29\glfw.dll
0x00007fff57980000 - 0x00007fff57a15000 C:\Windows\system32\uxtheme.dll
0x00007fff46020000 - 0x00007fff46062000 C:\Windows\SYSTEM32\dinput8.dll
0x00007fff577f0000 - 0x00007fff577fe000 C:\Windows\SYSTEM32\xinput1_4.dll
0x00007fff57c30000 - 0x00007fff57c58000 C:\Windows\SYSTEM32\DEVOBJ.dll
0x00007fff576d0000 - 0x00007fff576fa000 C:\Windows\SYSTEM32\dwmapi.dll
0x00007fff5b450000 - 0x00007fff5b5b6000 C:\Windows\System32\MSCTF.dll
0x00007fff5b5d0000 - 0x00007fff5b690000 C:\Windows\System32\OLEAUT32.dll
0x00007fff58000000 - 0x00007fff5800d000 C:\Windows\SYSTEM32\HID.DLL
0x00007fff5a9f0000 - 0x00007fff5ae2b000 C:\Windows\System32\SETUPAPI.DLL
0x00007fff59370000 - 0x00007fff593c6000 C:\Windows\System32\WINTRUST.dll
0x00007fff592b0000 - 0x00007fff592c1000 C:\Windows\System32\MSASN1.dll
0x00007fff593f0000 - 0x00007fff595b9000 C:\Windows\System32\CRYPT32.dll
0x00007fff3f3f0000 - 0x00007fff3f511000 C:\Windows\SYSTEM32\opengl32.dll
0x00007fff3f380000 - 0x00007fff3f3ac000 C:\Windows\SYSTEM32\GLU32.dll
0x00007fff34430000 - 0x00007fff34c62000 C:\Windows\SYSTEM32\ig7icd64.dll
0x00007fff53800000 - 0x00007fff53c64000 C:\Windows\SYSTEM32\igdusc64.dll
0x00007fff576b0000 - 0x00007fff576c3000 C:\Windows\SYSTEM32\WTSAPI32.dll
0x00007fff52950000 - 0x00007fff529d2000 C:\Windows\System32\TextInputFramework.dll
0x00007fff54ed0000 - 0x00007fff551a2000 C:\Windows\System32\CoreUIComponents.dll
0x00007fff57070000 - 0x00007fff57153000 C:\Windows\System32\CoreMessaging.dll
0x00007fff58530000 - 0x00007fff58561000 C:\Windows\SYSTEM32\ntmarta.dll
0x00007fff559f0000 - 0x00007fff55b29000 C:\Windows\SYSTEM32\wintypes.dll
0x00007fff55950000 - 0x00007fff55965000 C:\Windows\SYSTEM32\usermgrcli.dll
0x00007fff45fc0000 - 0x00007fff4601c000 C:\Users\reaganrussell\AppData\Local\Temp\lwjglreaganrussell\3.1.2-build-29\lwjgl_opengl.dll
0x0000000055130000 - 0x00000000552c8000 C:\Program Files\Java\jdk1.8.0_144\jre\bin\awt.dll
0x00007fff57630000 - 0x00007fff576ae000 C:\Windows\SYSTEM32\apphelp.dll
0x00007fff4b5d0000 - 0x00007fff4b779000 C:\Windows\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -Djava.library.path=./lib -javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2017.2.3\lib\idea_rt.jar=52248:C:\Program Files\JetBrains\IntelliJ IDEA 2017.2.3\bin -Dfile.encoding=UTF-8
java_command: nitrodragon.game.Main
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_144\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\rt.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\bin;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-assimp-natives-windows.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-assimp.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-glfw-natives-windows.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-glfw.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-openal-natives-windows.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\lwjgl3_stuff\lib\lwjgl-openal.jar;C:\Users\reaganrussell\Desktop\Thundering Tests\
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Users\reaganrussell\AppData\Local\Microsoft\WindowsApps;C:\Users\[redacted]\AppData\Local\GitHubDesktop\bin;C:\Users\[redacted]\Desktop\Git\cmd
USERNAME=[redacted]
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 58 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, erms, ht, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8293044k(3366196k free), swap 9603764k(3499084k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.144-b01) for windows-amd64 JRE (1.8.0_144-b01), built on Jul 21 2017 21:57:33 by "java_re" with MS VC++ 10.0 (VS2010)
time: Thu Sep 28 10:39:39 2017
elapsed time: 2 seconds (0d 0h 0m 2s)
So, I reinstalled my libraries (I'm using LWJGL 3.1.3 and JOML 1.9.4) and tried to set up a Maven dependency instead, but neither solutions worked. What else should I do? My code runs well at home, so it's highly likely it's not an issue with that.
Looking at the stacktrace:
j nitrodragon.render.Texture.finalize()V+4
j java.lang.System$2.invokeFinalize(Ljava/lang/Object;)V+1
j java.lang.ref.Finalizer.runFinalizer(Lsun/misc/JavaLangAccess;)V+46
j java.lang.ref.Finalizer.access$100(Ljava/lang/ref/Finalizer;Lsun/misc/JavaLangA ccess;)V+2
j java.lang.ref.Finalizer$FinalizerThread.run()V+45
you are calling OpenGL functions inside of a finalize() method (inherited from Object.finalize()). You cannot do this, since the finalize() method is called by a special Finalizer thread at some point during Garbage Collection, in which obviously your OpenGL context is not current.
That is why LWJGL crashes.
Okay, I am facing this problem for quite a long time now and still couldn't get any solution. I will describe what's happening and what I tried to fix things.
A year back I installed intellij Idea IDE in my windows 7 32-bit (4GB ram, 3.3GHz Intel core i3 CPU). But it kept crashing and I could never launch it and build a new project. I gave up after trying thousands of times.
Few months back I installed Android Studio and the studio behaved the same. It kept crashing so frequently that I couldn't even create a single application. Sometimes I was able to build and run a project but in any case it hardly ran for no more than 7-10 minutes. I thought, again the studio uses ide of intelliJ so that might be the reason. Maybe intellij idea was too heavy to run in my system.
A month back I installed NetBeans and now, although not as frequently as above two programs, it crashes randomly. Sometimes it crashes while splash screen is loading, or when I am typing or while running apps that I create. The crashing is completely random.
I tried the following to solve the issue:
Installed windows 7 64-bit and Windows 10 64-bit assuming that there might be some OS issues (bad dll's etc.). But that changed nothing.
Extented the memory used by Java to 1024 MB's (-Xms1024m)
Tried running Java apps in linux distros (Debian and Ubuntu), they crashed.
Uninstalled and reinstalled Java 1.8 around 100 times.
Updated graphics driver.
The thing that bugs me more is that it doesn't give consistent error reports in the hs_err_pid log file. Sometimes it states that problematic frame was some java.util component and sometimes it says it was jvm.dll itself. What's more, sometimes hs_err_pid file isn't generated at all.
Please suggest me what to do in this case. This is keeping me from learning and building in Java.
Note: By crashing, I mean programs shut down completely. They don't freeze or stuck.
Thanks!
Edit: The error log file
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000002823a26, pid=6768, tid=0x0000000000001578
#
# JRE version: Java(TM) SE Runtime Environment (8.0_131-b11) (build 1.8.0_131-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.131-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# J 550 C2 java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; (148 bytes) # 0x0000000002823a26 [0x0000000002823660+0x3c6]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x0000000016776000): JavaThread "JavaFX Application Thread" [_thread_in_Java, id=5496, stack(0x00000000177f0000,0x00000000178f0000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000570b7e50
Registers:
RAX=0x000000000000021b, RBX=0x00000000178eb2a0, RCX=0x00000000eba21ce0, RDX=0x00000000ffffffc6
RSP=0x00000000178eb250, RBP=0x00000000178eb370, RSI=0x000000000000021b, RDI=0x0000000014544748
R8 =0x00000000eba21ce0, R9 =0x00000000eba274a0, R10=0x00000000eba24ee0, R11=0x0000000020023f5a
R12=0x0000000000000000, R13=0x00000000026da714, R14=0x00000000178eb298, R15=0x0000000016776000
RIP=0x0000000002823a26, EFLAGS=0x0000000000010216
Top of Stack: (sp=0x00000000178eb250)
0x00000000178eb250: 000000000000021b 0000000014a2b6a0
0x00000000178eb260: 0000000000000000 0000000014a2b4d0
0x00000000178eb270: 0000000000000000 00000000178eb2a0
0x00000000178eb280: 00000000178eb370 00000000026da714
0x00000000178eb290: 00000000178eb370 00000000026da7c4
0x00000000178eb2a0: 00000000178eb308 00000000025c835d
0x00000000178eb2b0: 00000000178eb318 00000000025c835d
0x00000000178eb2c0: 00000000eba274b0 00000000178eb2c8
0x00000000178eb2d0: 0000000014a2b319 00000000178eb320
0x00000000178eb2e0: 00000000eba21c80 00000000eba274a0
0x00000000178eb2f0: 0000000014a2b330 0000000000000000
0x00000000178eb300: 00000000178eb370 00000000025c81b4
0x00000000178eb310: 00000000025c835d 00000000025c81b4
0x00000000178eb320: 00000000eba274a0 00000000eba21c80
0x00000000178eb330: 00000000178eb330 0000000014a29f72
0x00000000178eb340: 00000000178eb390 0000000014a2a9f8
Instructions: (pc=0x0000000002823a26)
0x0000000002823a06: 65 ff ff ff 8b 2c 24 4c 89 0c 24 44 89 44 24 08
0x0000000002823a16: 44 89 5c 24 10 e8 80 1d de ff cc ba c6 ff ff ff
0x0000000002823a26: 8b 2d 24 44 89 54 24 08 4c 89 4c 24 10 44 89 44
0x0000000002823a36: 24 0c 66 66 90 e8 60 1d de ff cc ba f4 ff ff ff
Register to memory mapping:
RAX=0x000000000000021b is an unknown value
RBX=0x00000000178eb2a0 is pointing into the stack for thread: 0x0000000016776000
RCX=0x00000000eba21ce0 is an oop
com.sun.javafx.css.SelectorPartitioning$PartitionKey
- klass: 'com/sun/javafx/css/SelectorPartitioning$PartitionKey'
RDX=0x00000000ffffffc6 is an unallocated location in the heap
RSP=0x00000000178eb250 is pointing into the stack for thread: 0x0000000016776000
RBP=0x00000000178eb370 is pointing into the stack for thread: 0x0000000016776000
RSI=0x000000000000021b is an unknown value
RDI=0x0000000014544748 is pointing into metadata
R8 =0x00000000eba21ce0 is an oop
com.sun.javafx.css.SelectorPartitioning$PartitionKey
- klass: 'com/sun/javafx/css/SelectorPartitioning$PartitionKey'
R9 =0x00000000eba274a0 is an oop
com.sun.javafx.css.SelectorPartitioning$PartitionKey
- klass: 'com/sun/javafx/css/SelectorPartitioning$PartitionKey'
R10=0x00000000eba24ee0 is an oop
java.util.HashMap$Node
- klass: 'java/util/HashMap$Node'
R11=0x0000000020023f5a is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x00000000026da714 is at entry_point+436 in (nmethod*)0x00000000026da3d0
R14=0x00000000178eb298 is pointing into the stack for thread: 0x0000000016776000
R15=0x0000000016776000 is a thread
Stack: [0x00000000177f0000,0x00000000178f0000], sp=0x00000000178eb250, free space=1004k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C 0x0000000002823a26
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000016b14800 JavaThread "Thread-3" daemon [_thread_in_native, id=6376, stack(0x0000000018f10000,0x0000000019010000)]
0x0000000016afc800 JavaThread "JavaFX-Launcher" [_thread_blocked, id=4876, stack(0x0000000019010000,0x0000000019110000)]
=>0x0000000016776000 JavaThread "JavaFX Application Thread" [_thread_in_Java, id=5496, stack(0x00000000177f0000,0x00000000178f0000)]
0x0000000016775800 JavaThread "Thread-1" daemon [_thread_blocked, id=3200, stack(0x0000000017680000,0x0000000017780000)]
0x0000000016750800 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=6268, stack(0x0000000017290000,0x0000000017390000)]
0x0000000016394000 JavaThread "Service Thread" daemon [_thread_blocked, id=5228, stack(0x0000000016890000,0x0000000016990000)]
0x0000000016390800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=6452, stack(0x0000000016790000,0x0000000016890000)]
0x0000000014c9b800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3600, stack(0x0000000016290000,0x0000000016390000)]
0x0000000014c3d000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7144, stack(0x0000000016190000,0x0000000016290000)]
0x0000000014c3a800 JavaThread "Attach Listener" daemon [_thread_blocked, id=4856, stack(0x0000000016090000,0x0000000016190000)]
0x0000000014c39800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4128, stack(0x0000000015f90000,0x0000000016090000)]
0x00000000025b5800 JavaThread "Finalizer" daemon [_thread_blocked, id=6212, stack(0x0000000015e90000,0x0000000015f90000)]
0x00000000025b0000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3808, stack(0x0000000015d90000,0x0000000015e90000)]
0x00000000024c0800 JavaThread "main" [_thread_blocked, id=5940, stack(0x0000000002290000,0x0000000002390000)]
Other Threads:
0x0000000014c07000 VMThread [stack: 0x0000000015c90000,0x0000000015d90000] [id=6516]
0x00000000163b0000 WatcherThread [stack: 0x0000000016990000,0x0000000016a90000] [id=212]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 18944K, used 13152K [0x00000000ead80000, 0x00000000ec280000, 0x0000000100000000)
eden space 16384K, 80% used [0x00000000ead80000,0x00000000eba58110,0x00000000ebd80000)
from space 2560K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec280000)
to space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000)
ParOldGen total 44032K, used 0K [0x00000000c0800000, 0x00000000c3300000, 0x00000000ead80000)
object space 44032K, 0% used [0x00000000c0800000,0x00000000c0800000,0x00000000c3300000)
Metaspace used 8628K, capacity 8950K, committed 9216K, reserved 1056768K
class space used 1076K, capacity 1168K, committed 1280K, reserved 1048576K
Card table byte_map: [0x0000000011980000,0x0000000011b80000] byte_map_base: 0x000000001137c000
Marking Bits: (ParMarkBitMap*) 0x000000006541c720
Begin Bits: [0x00000000120e0000, 0x00000000130c0000)
End Bits: [0x00000000130c0000, 0x00000000140a0000)
Polling page: 0x00000000001e0000
CodeCache: size=245760Kb used=2462Kb max_used=2466Kb free=243297Kb
bounds [0x00000000025c0000, 0x0000000002830000, 0x00000000115c0000]
total_blobs=968 nmethods=569 adapters=312
compilation: enabled
Compilation events (10 events):
Event: 0.593 Thread 0x0000000016390800 nmethod 563 0x00000000028263d0 code [0x0000000002826520, 0x0000000002826630]
Event: 0.593 Thread 0x0000000016390800 566 3 java.util.SubList$1::next (25 bytes)
Event: 0.593 Thread 0x0000000014c9b800 nmethod 561 0x0000000002829510 code [0x0000000002829660, 0x00000000028298d8]
Event: 0.593 Thread 0x0000000016390800 nmethod 566 0x0000000002828c10 code [0x0000000002828dc0, 0x00000000028292e8]
Event: 0.593 Thread 0x0000000016390800 567 3 com.sun.javafx.collections.ObservableListWrapper::get (11 bytes)
Event: 0.593 Thread 0x0000000016390800 nmethod 567 0x0000000002828790 code [0x0000000002828900, 0x0000000002828b28]
Event: 0.593 Thread 0x0000000016390800 569 3 java.net.URI$Parser::charAt (9 bytes)
Event: 0.593 Thread 0x0000000016390800 nmethod 569 0x0000000002828150 code [0x00000000028282c0, 0x0000000002828608]
Event: 0.593 Thread 0x0000000016390800 568 3 com.sun.javafx.css.Rule::setStylesheet (76 bytes)
Event: 0.594 Thread 0x0000000016390800 nmethod 568 0x00000000028276d0 code [0x0000000002827880, 0x0000000002827f28]
GC Heap History (0 events):
No events
Deoptimization events (3 events):
Event: 0.486 Thread 0x0000000016776000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002771b50 method=java.lang.String.replace(CC)Ljava/lang/String; # 26
Event: 0.497 Thread 0x0000000016776000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000027a1b14 method=java.lang.String.indexOf([CII[CIII)I # 134
Event: 0.573 Thread 0x0000000016776000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000027fda2c method=java.io.BufferedInputStream.read()I # 8
Internal exceptions (10 events):
Event: 0.042 Thread 0x00000000024c0800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000ead87f90) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims
Event: 0.215 Thread 0x00000000024c0800 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000eaf5fb58) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.224 Thread 0x00000000024c0800 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000eaf6ced8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.254 Thread 0x00000000024c0800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000eaff7a98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.254 Thread 0x00000000024c0800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000eaff7ca8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.257 Thread 0x00000000024c0800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000eaffbbb8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.257 Thread 0x00000000024c0800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000eaffbdc8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
Event: 0.257 Thread 0x00000000024c0800 Exception <a 'java/lang/NullPointerException'> (0x00000000eaffc3a0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\interpreter\linkResolver.cpp, line 1197]
Event: 0.552 Thread 0x0000000016776000 Exception <a 'java/lang/NullPointerException'> (0x00000000eb8ab358) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\interpreter\linkResolver.cpp, line 1197]
Event: 0.552 Thread 0x0000000016776000 Exception <a 'java/lang/NullPointerException'> (0x00000000eb8ab358) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims\jvm.cpp, line 1394]
Events (10 events):
Event: 0.593 loading class com/sun/javafx/css/SelectorPartitioning$PartitionKey
Event: 0.593 loading class com/sun/javafx/css/SelectorPartitioning$PartitionKey done
Event: 0.594 loading class com/sun/javafx/css/Selector
Event: 0.594 loading class com/sun/javafx/css/Selector done
Event: 0.594 loading class com/sun/javafx/css/Selector
Event: 0.594 loading class com/sun/javafx/css/Selector done
Event: 0.594 loading class com/sun/javafx/css/SelectorPartitioning$Partition
Event: 0.594 loading class com/sun/javafx/css/SelectorPartitioning$Partition done
Event: 0.594 loading class com/sun/javafx/css/SelectorPartitioning$Slot
Event: 0.594 loading class com/sun/javafx/css/SelectorPartitioning$Slot done
Dynamic libraries:
0x00007ff7f5c70000 - 0x00007ff7f5ca7000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\java.exe
0x00007ffe97f40000 - 0x00007ffe9811b000 C:\Windows\SYSTEM32\ntdll.dll
0x00007ffe97030000 - 0x00007ffe970de000 C:\Windows\System32\KERNEL32.DLL
0x00007ffe94560000 - 0x00007ffe947a9000 C:\Windows\System32\KERNELBASE.dll
0x00007ffe970e0000 - 0x00007ffe97181000 C:\Windows\System32\ADVAPI32.dll
0x00007ffe972a0000 - 0x00007ffe9733d000 C:\Windows\System32\msvcrt.dll
0x00007ffe96cf0000 - 0x00007ffe96d49000 C:\Windows\System32\sechost.dll
0x00007ffe97e10000 - 0x00007ffe97f35000 C:\Windows\System32\RPCRT4.dll
0x00007ffe96d50000 - 0x00007ffe96e9a000 C:\Windows\System32\USER32.dll
0x00007ffe94800000 - 0x00007ffe9481e000 C:\Windows\System32\win32u.dll
0x00007ffe97640000 - 0x00007ffe97667000 C:\Windows\System32\GDI32.dll
0x00007ffe95210000 - 0x00007ffe95399000 C:\Windows\System32\gdi32full.dll
0x00007ffe944c0000 - 0x00007ffe9455a000 C:\Windows\System32\msvcp_win.dll
0x00007ffe953a0000 - 0x00007ffe95496000 C:\Windows\System32\ucrtbase.dll
0x00007ffe8f6e0000 - 0x00007ffe8f947000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.0_none_108e4f62dfe5d999\COMCTL32.dll
0x00007ffe97340000 - 0x00007ffe97639000 C:\Windows\System32\combase.dll
0x00007ffe94820000 - 0x00007ffe9488a000 C:\Windows\System32\bcryptPrimitives.dll
0x00007ffe97730000 - 0x00007ffe9775d000 C:\Windows\System32\IMM32.DLL
0x0000000064b20000 - 0x0000000064bf2000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcr100.dll
0x0000000064c00000 - 0x000000006549c000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\server\jvm.dll
0x00007ffe96ce0000 - 0x00007ffe96ce8000 C:\Windows\System32\PSAPI.DLL
0x00007ffe86c60000 - 0x00007ffe86c69000 C:\Windows\SYSTEM32\WSOCK32.dll
0x00007ffe96f60000 - 0x00007ffe96fcc000 C:\Windows\System32\WS2_32.dll
0x00007ffe92910000 - 0x00007ffe92933000 C:\Windows\SYSTEM32\WINMM.dll
0x00007ffe8d660000 - 0x00007ffe8d66a000 C:\Windows\SYSTEM32\VERSION.dll
0x00007ffe928b0000 - 0x00007ffe928db000 C:\Windows\SYSTEM32\WINMMBASE.dll
0x00007ffe947b0000 - 0x00007ffe947f9000 C:\Windows\System32\cfgmgr32.dll
0x0000000064ad0000 - 0x0000000064adf000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\verify.dll
0x0000000064aa0000 - 0x0000000064ac9000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\java.dll
0x0000000064a80000 - 0x0000000064a96000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\zip.dll
0x00007ffe95520000 - 0x00007ffe96957000 C:\Windows\System32\SHELL32.dll
0x00007ffe97760000 - 0x00007ffe9780a000 C:\Windows\System32\shcore.dll
0x00007ffe94890000 - 0x00007ffe94f82000 C:\Windows\System32\windows.storage.dll
0x00007ffe97820000 - 0x00007ffe97871000 C:\Windows\System32\shlwapi.dll
0x00007ffe943b0000 - 0x00007ffe943c1000 C:\Windows\System32\kernel.appcore.dll
0x00007ffe943f0000 - 0x00007ffe9443c000 C:\Windows\System32\powrprof.dll
0x00007ffe94440000 - 0x00007ffe94455000 C:\Windows\System32\profapi.dll
0x00007ffe8c660000 - 0x00007ffe8c74f000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcr120.dll
0x00007ffe82bc0000 - 0x00007ffe82c66000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcp120.dll
0x0000000065970000 - 0x0000000065992000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\prism_d3d.dll
0x00007ffe82a30000 - 0x00007ffe82bb9000 C:\Windows\system32\d3d9.dll
0x00007ffe91320000 - 0x00007ffe9134a000 C:\Windows\SYSTEM32\dwmapi.dll
0x00007ffe92b10000 - 0x00007ffe92ba5000 C:\Windows\system32\uxtheme.dll
0x00007ffe73430000 - 0x00007ffe74367000 C:\Windows\SYSTEM32\nvd3dumx.dll
0x0000000180000000 - 0x0000000180188000 C:\Windows\system32\nvspcap64.dll
0x00007ffe97cc0000 - 0x00007ffe97e03000 C:\Windows\System32\ole32.dll
0x00007ffe97670000 - 0x00007ffe9772f000 C:\Windows\System32\OLEAUT32.dll
0x00007ffe97880000 - 0x00007ffe97cbb000 C:\Windows\System32\SETUPAPI.dll
0x0000000065920000 - 0x0000000065963000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\glass.dll
0x00007ffe97190000 - 0x00007ffe97298000 C:\Windows\System32\COMDLG32.dll
0x00007ffe969d0000 - 0x00007ffe96b36000 C:\Windows\System32\MSCTF.dll
0x00007ffe86290000 - 0x00007ffe86439000 C:\Windows\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=UTF-8
java_command: F:\Documents\NetBeansProjects\App\dist\run613663870\App.jar
java_class_path (initial): F:\Documents\NetBeansProjects\App\dist\run613663870\App.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\Devashish Jaiswal\AppData\Local\Microsoft\WindowsApps;
USERNAME=Devashish Jaiswal
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.0)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 58 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, clmul, erms, ht, tsc, tscinvbit, tscinv
Memory: 4k page, physical 4161068k(2188168k free), swap 5602860k(3422252k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.131-b11) for windows-amd64 JRE (1.8.0_131-b11), built on Mar 15 2017 01:23:53 by "java_re" with MS VC++ 10.0 (VS2010)
time: Tue Jul 11 09:28:54 2017
elapsed time: 0 seconds (0d 0h 0m 0s)
My knee-jerk reaction is to run a complete memory check with something like MemTest86. This really smells like a hardware problem.
To do so, get a blank USB stick and go over to ...
http://www.memtest86.com/download.htm
... and download the Windows image for creating a bootable USB drive. Expand the ZIP file, and use the enclosed EXE to create a bootable USB stick. Then boot the suspect system from the USB stick. It will take a few hours for the test to run.
Crashing thread is UI "JavaFX Application Thread" and crashed in native code
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C 0x0000000002823a26
Definetly there is memory corruption issue as you can see EXCEPTION_ACCESS_VIOLATION (0xc0000005) while accessing memory location 0x00000000570b7e50
Kindly run the disk clean or check the bad sectors.
I want to connect to sql server 2014 using java but i get this error
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000057e1ca43,pid=10584, tid=11060
#
# JRE version: Java(TM) SE Runtime Environment (8.0_45-b14) (build 1.8.0_45-b14)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.45-b02 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V [jvm.dll+0x13ca43]
#
# 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\Bcc\Documents\NetBeansProjects\testSyncProjectConnectMysqlAndSql\hs_err_pid10584.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
and the content of log file is
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000057e1ca43, pid=10584, tid=11060
#
# JRE version: Java(TM) SE Runtime Environment (8.0_45-b14) (build 1.8.0_45-b14)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.45-b02 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V [jvm.dll+0x13ca43]
#
#Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x0000000002300800): JavaThread "main" [_thread_in_vm, id=11060, stack(0x0000000002120000,0x0000000002220000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x00000002bf8fc268
Registers:
RAX=0x0000000000000000, RBX=0x0000000002300800, RCX=0x0000000000000003, RDX=0x00000002bf8fc200
RSP=0x000000000221ea20, RBP=0x000000000221eb70, RSI=0x00000000023009f8, RDI=0x0000000002300800
R8 =0xffff8003f52c23b0, R9 =0x00007ffc0ad3dc7f, R10=0x000000000000002f, R11=0x000000000000002f
R12=0x0000000000000000, R13=0x0000000000000000, R14=0x000000000221edb0, R15=0x000000000221ed80
RIP=0x0000000057e1ca43, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x000000000221ea20)
0x000000000221ea20: 00007ffc0ad3dc50 0000000002300800
0x000000000221ea30: 000000000221eb70 0000000000000000
0x000000000221ea40: 0000000002300800 0000000000000000
0x000000000221ea50: 0000000000000000 0000000000000000
0x000000000221ea60: 00000000023ee060 00007ffc0ad168f4
0x000000000221ea70: 00000000023009f8 000000000221eb70
0x000000000221ea80: 0000000002300800 00000000024612e0
0x000000000221ea90: 0000000000000000 00000000024613d7
0x000000000221eaa0: 00000000024616e0 0000000000000000
0x000000000221eab0: 0000000000000000 0000000000000000
0x000000000221eac0: 00000000024612e0 0000000002010000
0x000000000221ead0: 0000000000000000 0000000000000000
0x000000000221eae0: 0000000000000000 0000000000000000
0x000000000221eaf0: 0000000000000000 0000000000000000
0x000000000221eb00: 0000000000000000 000000000221edb8
0x000000000221eb10: 000000000221ed98 000000000221ed80
Instructions: (pc=0x0000000057e1ca43)
0x0000000057e1ca23: 00 00 48 8b 17 74 15 8b 52 08 8b 0d 75 3d 65 00
0x0000000057e1ca33: 48 d3 e2 48 03 15 63 3d 65 00 eb 04 48 8b 52 08
0x0000000057e1ca43: 48 8b 52 68 48 8b ce e8 11 61 0d 00 48 83 7c 24
0x0000000057e1ca53: 28 00 48 8b f0 74 0a 48 8d 4c 24 20 e8 2c ae 13
Register to memory mapping:
RAX=0x0000000000000000 is an unknown value
RBX=0x0000000002300800 is a thread
RCX=0x0000000000000003 is an unknown value
RDX=0x00000002bf8fc200 is an unknown value
RSP=0x000000000221ea20 is pointing into the stack for thread: 0x0000000002300800
RBP=0x000000000221eb70 is pointing into the stack for thread: 0x0000000002300800
RSI=0x00000000023009f8 is an unknown value
RDI=0x0000000002300800 is a thread
R8 =0xffff8003f52c23b0 is an unknown value
R9 =0x00007ffc0ad3dc7f is an unknown value
R10=0x000000000000002f is an unknown value
R11=0x000000000000002f is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x0000000000000000 is an unknown value
R14=0x000000000221edb0 is pointing into the stack for thread: 0x0000000002300800
R15=0x000000000221ed80 is pointing into the stack for thread: 0x0000000002300800
Stack: [0x0000000002120000,0x0000000002220000], sp=0x000000000221ea20, free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x13ca43]
C [sqljdbc_auth.dll+0x68f4]
C 0x0000000002415e34
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j com.microsoft.sqlserver.jdbc.AuthenticationJNI.SNISecGenClientContext([B[I[BI[B[I[ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/logging/Logger;)I+0
j com.microsoft.sqlserver.jdbc.AuthenticationJNI.GenerateClientContext([BI[B[I[Z)I+24
j com.microsoft.sqlserver.jdbc.SQLServerConnection.SSPIData([B[B[I[ZLcom/microsoft/sqlserver/jdbc/AuthenticationJNI;)V+13
j com.microsoft.sqlserver.jdbc.SQLServerConnection.sendLogon(Lcom/microsoft/sqlserver/jdbc/SQLServerConnection$LogonCommand;Lcom/microsoft/sqlserver/jdbc/AuthenticationJNI;)V+151
j com.microsoft.sqlserver.jdbc.SQLServerConnection.logon(Lcom/microsoft/sqlserver/jdbc/SQLServerConnection$LogonCommand;)V+20
j com.microsoft.sqlserver.jdbc.SQLServerConnection.access$000(Lcom/microsoft/sqlserver/jdbc/SQLServerConnection;Lcom/microsoft/sqlserver/jdbc/SQLServerConnection$LogonCommand;)V+2
j com.microsoft.sqlserver.jdbc.SQLServerConnection$LogonCommand.doExecute()Z+5
j com.microsoft.sqlserver.jdbc.TDSCommand.execute(Lcom/microsoft/sqlserver/jdbc/TDSWriter;Lcom/microsoft/sqlserver/jdbc/TDSReader;)Z+30
j com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(Lcom/microsoft/sqlserver/jdbc/TDSCommand;)Z+45
j com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(Lcom/microsoft/sqlserver/jdbc/ServerPortPlaceHolder;II)V+284
j com.microsoft.sqlserver.jdbc.SQLServerConnection.login(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Lcom/microsoft/sqlserver/jdbc/FailoverInfo;IJ)V+399
j com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(Ljava/util/Properties;Lcom/microsoft/sqlserver/jdbc/SQLServerPooledConnection;)Ljava/sql/Connection;+1736
j com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;+45
j java.sql.DriverManager.getConnection(Ljava/lang/String;Ljava/util/Properties;Ljava/lang/Class;)Ljava/sql/Connection;+171
j java.sql.DriverManager.getConnection(Ljava/lang/String;)Ljava/sql/Connection;+13
j testSyncProjectConnectMysqlAndSql.SqlConnection.<init>()V+16
j testSyncProjectConnectMysqlAndSql.TestSyncProjectConnectMysqlAndSql.main([Ljava/lang/String;)V+4
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000016fae800 JavaThread "Service Thread" daemon [_thread_blocked, id=12120, stack(0x0000000018ba0000,0x0000000018ca0000)]
0x0000000016f5c000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=3624, stack(0x00000000186a0000,0x00000000187a0000)]
0x0000000016f59000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=8876, stack(0x00000000185a0000,0x00000000186a0000)]
0x0000000016f56800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=4804, stack(0x00000000184a0000,0x00000000185a0000)]
0x0000000016f55800 JavaThread "Attach Listener" daemon [_thread_blocked, id=6372, stack(0x00000000183a0000,0x00000000184a0000)]
0x0000000016fa7800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=12028, stack(0x00000000182a0000,0x00000000183a0000)]
0x0000000016f19800 JavaThread "Finalizer" daemon [_thread_blocked, id=8308, stack(0x00000000181a0000,0x00000000182a0000)]
0x0000000016f18800 JavaThread "Reference Handler" daemon [_thread_blocked, id=7956, stack(0x00000000180a0000,0x00000000181a0000)]
=>0x0000000002300800 JavaThread "main" [_thread_in_vm, id=11060, stack(0x0000000002120000,0x0000000002220000)]
Other Threads:
0x0000000016f17000 VMThread [stack: 0x0000000017fa0000,0x00000000180a0000] [id=8300]
0x0000000018813800 WatcherThread [stack: 0x0000000018ca0000,0x0000000018da0000] [id=4676]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 38400K, used 16296K [0x00000000d5d80000, 0x00000000d8800000, 0x0000000100000000)
eden space 33280K, 48% used [0x00000000d5d80000,0x00000000d6d6a3d8,0x00000000d7e00000)
from space 5120K, 0% used [0x00000000d8300000,0x00000000d8300000,0x00000000d8800000)
to space 5120K, 0% used [0x00000000d7e00000,0x00000000d7e00000,0x00000000d8300000)
ParOldGen total 87552K, used 0K [0x0000000081800000, 0x0000000086d80000, 0x00000000d5d80000)
object space 87552K, 0% used [0x0000000081800000,0x0000000081800000,0x0000000086d80000)
Metaspace used 7599K, capacity 7766K, committed 7808K, reserved 1056768K
class space used 802K, capacity 859K, committed 896K, reserved 1048576K
Card table byte_map: [0x00000000117c0000,0x0000000011bc0000] byte_map_base: 0x00000000113b4000
Marking Bits: (ParMarkBitMap*) 0x00000000584e4040
Begin Bits: [0x0000000012270000, 0x0000000014210000)
End Bits: [0x0000000014210000, 0x00000000161b0000)
Polling page: 0x0000000000950000
CodeCache: size=245760Kb used=2653Kb max_used=2653Kb free=243106Kb
bounds [0x0000000002400000, 0x00000000026a0000, 0x0000000011400000]
total_blobs=1002 nmethods=675 adapters=240
compilation: enabled
Compilation events (10 events):
Event: 0.556 Thread 0x0000000016f56800 672 4 sun.security.provider.MD5::II (31 bytes)
Event: 0.556 Thread 0x0000000016f56800 nmethod 672 0x0000000002699450 code [0x0000000002699580, 0x00000000026995f8]
Event: 0.558 Thread 0x0000000016f5c000 674 3 sun.net.www.ParseUtil::encodePath (336 bytes)
Event: 0.559 Thread 0x0000000016f5c000 nmethod 674 0x0000000002699650 code [0x00000000026998c0, 0x000000000269a8b8]
Event: 0.561 Thread 0x0000000016f5c000 675 3 java.util.ArrayList$Itr::hasNext (20 bytes)
Event: 0.561 Thread 0x0000000016f5c000 nmethod 675 0x0000000002694d50 code [0x0000000002694ec0, 0x0000000002695090]
Event: 0.561 Thread 0x0000000016f5c000 676 1 sun.security.jca.ProviderList::access$100 (5 bytes)
Event: 0.561 Thread 0x0000000016f5c000 nmethod 676 0x0000000002694a90 code [0x0000000002694be0, 0x0000000002694cd0]
Event: 0.561 Thread 0x0000000016f5c000 677 s! 3 sun.security.jca.ProviderConfig::getProvider (115 bytes)
Event: 0.562 Thread 0x0000000016f5c000 nmethod 677 0x0000000002696dd0 code [0x0000000002696f80, 0x0000000002697808]
GC Heap History (0 events):
No events
Deoptimization events (7 events):
Event: 0.261 Thread 0x0000000002300800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002590864 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; # 181
Event: 0.277 Thread 0x0000000002300800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000025bcc5c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; # 253
Event: 0.277 Thread 0x0000000002300800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000025bcc5c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; # 253
Event: 0.277 Thread 0x0000000002300800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000025bcc5c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; # 253
Event: 0.277 Thread 0x0000000002300800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000025bcc5c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; # 253
Event: 0.411 Thread 0x0000000002300800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000025b8e14 method=java.lang.CharacterDataLatin1.digit(II)I # 82
Event: 0.562 Thread 0x0000000002300800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002689a30 method=java.util.HashMap.resize()[Ljava/util/HashMap$Node; # 56
Internal exceptions (6 events):
Event: 0.034 Thread 0x0000000002300800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000d5d92f40) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\sr ك‰Nصچ،?
Event: 0.034 Thread 0x0000000002300800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000d5d931d0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\src\share\vm\prims\j\ع؛ه4إ?
Event: 0.166 Thread 0x0000000002300800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d6145d80) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.166 Thread 0x0000000002300800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d6145f38) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.166 Thread 0x0000000002300800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d6149cd0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.166 Thread 0x0000000002300800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d6149e88) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u45\3457\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Events (10 events):
Event: 0.559 loading class javax/crypto/MacSpi done
Event: 0.561 loading class sun/security/ssl/CipherBox$1
Event: 0.561 loading class sun/security/ssl/CipherBox$1 done
Event: 0.561 loading class java/lang/StrictMath
Event: 0.561 loading class java/lang/StrictMath done
Event: 0.562 Thread 0x0000000002300800 Uncommon trap: trap_request=0xffffff65 fr.pc=0x0000000002689a30
Event: 0.562 Thread 0x0000000002300800 DEOPT PACKING pc=0x0000000002689a30 sp=0x000000000221ebc0
Event: 0.562 Thread 0x0000000002300800 DEOPT UNPACKING pc=0x000000000244582a sp=0x000000000221eb20 mode 2
Event: 0.562 loading class com/microsoft/sqlserver/jdbc/AuthenticationJNI
Event: 0.562 loading class com/microsoft/sqlserver/jdbc/AuthenticationJNI done
Dynamic libraries:
0x00007ff6cba10000 - 0x00007ff6cba47000 C:\Program Files\Java\jdk1.8.0_45\bin\java.exe
0x00007ffc2c060000 - 0x00007ffc2c221000 C:\Windows\SYSTEM32\ntdll.dll
0x00007ffc2bd20000 - 0x00007ffc2bdcd000 C:\Windows\system32\KERNEL32.DLL
0x00007ffc29550000 - 0x00007ffc2972d000 C:\Windows\system32\KERNELBASE.dll
0x00007ffc2bde0000 - 0x00007ffc2be86000 C:\Windows\system32\ADVAPI32.dll
0x00007ffc2b630000 - 0x00007ffc2b6cd000 C:\Windows\system32\msvcrt.dll
0x00007ffc29730000 - 0x00007ffc2978b000 C:\Windows\system32\sechost.dll
0x00007ffc2b7a0000 - 0x00007ffc2b8c6000 C:\Windows\system32\RPCRT4.dll
0x00007ffc2bb90000 - 0x00007ffc2bcde000 C:\Windows\system32\USER32.dll
0x00007ffc2b200000 - 0x00007ffc2b386000 C:\Windows\system32\GDI32.dll
0x00007ffc20430000 - 0x00007ffc206a4000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.10240.16384_none_f41f7b285750ef43\COMCTL32.dll
0x00007ffc2bce0000 - 0x00007ffc2bd16000 C:\Windows\system32\IMM32.DLL
0x00007ffc2ba20000 - 0x00007ffc2bb7c000 C:\Windows\system32\MSCTF.dll
0x00000000591f0000 - 0x00000000592c2000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\msvcr100.dll
0x0000000057ce0000 - 0x0000000058563000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\server\jvm.dll
0x00007ffc2bdd0000 - 0x00007ffc2bdd8000 C:\Windows\system32\PSAPI.DLL
0x00007ffc1e930000 - 0x00007ffc1e953000 C:\Windows\SYSTEM32\WINMM.dll
0x00007ffc25730000 - 0x00007ffc25739000 C:\Windows\SYSTEM32\WSOCK32.dll
0x00007ffc20420000 - 0x00007ffc2042a000 C:\Windows\SYSTEM32\VERSION.dll
0x00007ffc2b6d0000 - 0x00007ffc2b739000 C:\Windows\system32\WS2_32.dll
0x00007ffc2bb80000 - 0x00007ffc2bb88000 C:\Windows\system32\NSI.dll
0x00007ffc1e900000 - 0x00007ffc1e92c000 C:\Windows\SYSTEM32\WINMMBASE.dll
0x00007ffc29330000 - 0x00007ffc29374000 C:\Windows\system32\cfgmgr32.dll
0x00007ffc27400000 - 0x00007ffc27427000 C:\Windows\SYSTEM32\DEVOBJ.dll
0x00000000591a0000 - 0x00000000591af000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\verify.dll
0x0000000059170000 - 0x0000000059199000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\java.dll
0x0000000059150000 - 0x0000000059166000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\zip.dll
0x00007ffc29c70000 - 0x00007ffc2b195000 C:\Windows\system32\SHELL32.dll
0x00007ffc28be0000 - 0x00007ffc29209000 C:\Windows\system32\windows.storage.dll
0x00007ffc29880000 - 0x00007ffc29afc000 C:\Windows\system32\combase.dll
0x00007ffc2b540000 - 0x00007ffc2b591000 C:\Windows\system32\shlwapi.dll
0x00007ffc28b00000 - 0x00007ffc28b0f000 C:\Windows\system32\kernel.appcore.dll
0x00007ffc29210000 - 0x00007ffc292c3000 C:\Windows\system32\shcore.dll
0x00007ffc28a90000 - 0x00007ffc28ada000 C:\Windows\system32\powrprof.dll
0x00007ffc28ae0000 - 0x00007ffc28af3000 C:\Windows\system32\profapi.dll
0x0000000059130000 - 0x000000005914a000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\net.dll
0x00007ffc282a0000 - 0x00007ffc282fd000 C:\Windows\system32\mswsock.dll
0x00007ffc280a0000 - 0x00007ffc28148000 C:\Windows\SYSTEM32\DNSAPI.dll
0x00007ffc1f510000 - 0x00007ffc1f51a000 C:\Windows\System32\rasadhlp.dll
0x00007ffc1fff0000 - 0x00007ffc20058000 C:\Windows\System32\fwpuclnt.dll
0x00007ffc289c0000 - 0x00007ffc289e8000 C:\Windows\SYSTEM32\bcrypt.dll
0x0000000057a40000 - 0x0000000057a64000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\sunec.dll
0x00007ffc28300000 - 0x00007ffc28317000 C:\Windows\SYSTEM32\CRYPTSP.dll
0x00007ffc27f50000 - 0x00007ffc27f83000 C:\Windows\system32\rsaenh.dll
0x00007ffc28080000 - 0x00007ffc2809f000 C:\Windows\SYSTEM32\USERENV.dll
0x00007ffc288b0000 - 0x00007ffc2891b000 C:\Windows\system32\bcryptprimitives.dll
0x00007ffc28470000 - 0x00007ffc2847b000 C:\Windows\SYSTEM32\CRYPTBASE.dll
0x00007ffc26650000 - 0x00007ffc26688000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
0x00007ffc26640000 - 0x00007ffc2664b000 C:\Windows\SYSTEM32\WINNSI.DLL
0x00007ffc21ef0000 - 0x00007ffc21f06000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
0x00007ffc21ed0000 - 0x00007ffc21eea000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
0x0000000058e10000 - 0x0000000058e21000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\nio.dll
0x00007ffc19e10000 - 0x00007ffc19e25000 C:\Windows\system32\napinsp.dll
0x00007ffc19e40000 - 0x00007ffc19e5a000 C:\Windows\system32\pnrpnsp.dll
0x00007ffc26cf0000 - 0x00007ffc26d08000 C:\Windows\system32\NLAapi.dll
0x00007ffc19e60000 - 0x00007ffc19e6d000 C:\Windows\System32\winrnr.dll
0x00007ffc19ea0000 - 0x00007ffc19eb5000 C:\Windows\system32\wshbth.dll
0x00007ffc0ad10000 - 0x00007ffc0ad5e000 C:\Program Files\Java\jdk1.8.0_45\jre\bin\sqljdbc_auth.dll
0x00007ffc2b8d0000 - 0x00007ffc2ba11000 C:\Windows\system32\ole32.dll
0x00007ffc29380000 - 0x00007ffc29541000 C:\Windows\system32\CRYPT32.dll
0x00007ffc28b10000 - 0x00007ffc28b21000 C:\Windows\system32\MSASN1.dll
0x00007ffc23010000 - 0x00007ffc2301c000 C:\Windows\system32\secur32.dll
0x00007ffc286d0000 - 0x00007ffc286fc000 C:\Windows\SYSTEM32\SSPICLI.DLL
0x00007ffc28350000 - 0x00007ffc28444000 C:\Windows\system32\kerberos.DLL
0x00007ffc28320000 - 0x00007ffc28348000 C:\Windows\SYSTEM32\KerbClientShared.dll
0x00007ffc28450000 - 0x00007ffc28464000 C:\Windows\SYSTEM32\cryptdll.dll
0x00007ffc28240000 - 0x00007ffc2829f000 C:\Windows\system32\msv1_0.DLL
0x00007ffc28230000 - 0x00007ffc2823b000 C:\Windows\SYSTEM32\NtlmShared.dll
0x00007ffc10170000 - 0x00007ffc10198000 C:\Windows\system32\ntdsapi.dll
0x00007ffc235e0000 - 0x00007ffc2376a000 C:\Windows\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=UTF-8
java_command: testSyncProjectConnectMysqlAndSql.TestSyncProjectConnectMysqlAndSql
java_class_path (initial): C:\Users\Bcc\Desktop\sqljdbc4-3.0.jar;C:\Users\Bcc\Desktop\com.mysql.jdbc_5.1.5.jar;C:\Users\Bcc\Desktop\sqljdbc_6.0\enu\jre8\sqljdbc42.jar;C:\Users\Bcc\Documents\NetBeansProjects\testSyncProjectConnectMysqlAndSql\build\classes
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\xampp\php;C:\ProgramData\ComposerSetup\bin;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files\Git\cmd;C:\Users\Bcc\AppData\Roaming\Composer\vendor\bin
USERNAME=Bcc
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 10240 (10.0.10240.16384)
CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 78 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
Memory: 4k page, physical 8285184k(3671648k free), swap 9598092k(3407876k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.45-b02) for windows-amd64 JRE (1.8.0_45-b14), built on Apr 10 2015 10:34:15 by "java_re" with MS VC++ 10.0 (VS2010)
time: Sat Mar 11 00:48:37 2017
elapsed time: 0 seconds (0d 0h 0m 0s)
and my java code is
public SqlConnection() throws SQLException {
Connection conn=null;
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl="jdbc:sqlserver://localhost:1433;databaseName=testJava1;integratedSecurity=true";
conn=DriverManager.getConnection(connectionUrl);
} catch (Exception e) {
e.printStackTrace();
}finally{
if (conn != null) {
conn.close();
}
}
I searched for this bug online but I couldn't find anything..
I'am using netbeans IDE 8.0.2 and jdk 1.8.0 .
tI think your problems lies in the sqljdbc_auth.dll, maybe you are not using right version.
Java dumps are pretty hardcore errors, involving JNI methods, so the source mus be either sqljdbc_auth.dll or some corrupted file in your JDK.
You should try the latest jdbc driver for sql server, make sure the latest sqljdbc_auth.dll is loaded.
You could also update JDK to the latest version (which is a good practice) , if you have some corrupted file in the current JVM.
i'm trying to add a server to do Java EE aplications, and the moment i click in "no servers are available. Click this link to create a new server" the Eclipse close, and in the folder appears a text document, with the following:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f648c3c8435, pid=3088, tid=140070770353920
#
# JRE version: OpenJDK Runtime Environment (7.0_55-b14) (build 1.7.0_55-b14)
# Java VM: OpenJDK 64-Bit Server VM (24.51-b03 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libgtk-3.so.0+0x272435] gtk_tree_model_get_valist+0xf5
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
# http://icedtea.classpath.org/bugzilla
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x00007f64bc00a800): JavaThread "main" [_thread_in_native, id=3089, stack(0x00007f64c472a000,0x00007f64c482b000)]
siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000000000030
Registers:
RAX=0x0000000000000000, RBX=0x00007f64c4826928, RCX=0x00007f64bc000050, RDX=0x0000000000000000
RSP=0x00007f64c4826870, RBP=0x00007f64bd3fcb30, RSI=0x00000000ffffffff, RDI=0x00007f64c48268a0
R8 =0x00007f64b90102a0, R9 =0x00007f64bc00aee8, R10=0x00007f64c3a0bee0, R11=0x00007f64775d51bb
R12=0x00007f64c48268a0, R13=0x00007f64c4826880, R14=0x00007f64bde99f70, R15=0x00007f648c528d20
RIP=0x00007f648c3c8435, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
TRAPNO=0x000000000000000e
Top of Stack: (sp=0x00007f64c4826870)
0x00007f64c4826870: 0000000000000001 0000000000000000
0x00007f64c4826880: 0000000000000000 0000000000000000
0x00007f64c4826890: 0000000000000000 00007f646aae51fa
0x00007f64c48268a0: 00000000ffffffff 00007f648f36c522
0x00007f64c48268b0: 00007f648f326bb8 00007f64bc1e3840
0x00007f64c48268c0: 00007f64c4826990 6285ae97560ddf00
0x00007f64c48268d0: 0000000000000000 00007f64bde99f70
0x00007f64c48268e0: 00007f64bd3fcb30 00007f64bd3fcb30
0x00007f64c48268f0: 00007f64bde99f70 00007f64bd4275e0
0x00007f64c4826900: 00007f64bd3fcb30 00007f64bde99f70
0x00007f64c4826910: 0000000000000000 00007f648c3c874c
0x00007f64c4826920: 0000000000000008 0000003000000018
0x00007f64c4826930: 00007f64c4826a10 00007f64c4826940
0x00007f64c4826940: 0000000000000000 00007f64bd4275e0
0x00007f64c4826950: 0000000000000000 00007f64bd4275e0
0x00007f64c4826960: 00000000ffffffff 00007f64c4826af0
0x00007f64c4826970: 00007f64bc00a800 00007f64bc6f5911
0x00007f64c4826980: 0000000000000000 6285ae97560ddf00
0x00007f64c4826990: 00007f64c4826af0 00007f64bc00a800
0x00007f64c48269a0: 00007f64c4826af0 0000000000000000
0x00007f64c48269b0: 00000000fa3f9df0 00007f64bc00a800
0x00007f64c48269c0: 00007f64c4826a00 00007f64c3223cb2
0x00007f64c48269d0: 00007f64c4826a10 00007f64bc00a9d8
0x00007f64c48269e0: 0000000000000000 00007f64bd3fcb30
0x00007f64c48269f0: 00007f64bde99f70 00007f64bc00a9d8
0x00007f64c4826a00: 00007f64c4826af0 00007f647735455c
0x00007f64c4826a10: 00007f64c4826a70 00000000d0f3a540
0x00007f64c4826a20: 00007f64c4826ac8 0000000000000000
0x00007f64c4826a30: 00000000d0f3a540 00007f64c4826b18
0x00007f64c4826a40: 00007f64bc00a800 00007f64b9012738
0x00007f64c4826a50: 00000000ffffffff 00000000d10e3056
0x00007f64c4826a60: 00007f64bc00b358 00000000fffffffe
Instructions: (pc=0x00007f648c3c8435)
0x00007f648c3c8415: 8e df 01 00 00 4c 89 e9 4c 89 f6 48 89 ef e8 68
0x00007f648c3c8425: f0 ff ff 48 8b 7c 24 10 e8 ee a9 df ff 4c 89 e7
0x00007f648c3c8435: 48 8b 50 30 49 89 c2 b9 08 00 00 00 31 c0 45 31
0x00007f648c3c8445: c0 f3 48 ab 42 0f b6 0c 02 84 c9 74 4f 83 e9 64
Register to memory mapping:
RAX=0x0000000000000000 is an unknown value
RBX=0x00007f64c4826928 is pointing into the stack for thread: 0x00007f64bc00a800
RCX=0x00007f64bc000050 is an unknown value
RDX=0x0000000000000000 is an unknown value
RSP=0x00007f64c4826870 is pointing into the stack for thread: 0x00007f64bc00a800
RBP=0x00007f64bd3fcb30 is an unknown value
RSI=0x00000000ffffffff is an unknown value
RDI=0x00007f64c48268a0 is pointing into the stack for thread: 0x00007f64bc00a800
R8 =0x00007f64b90102a0 is at code_begin+0 in an Interpreter codelet
method entry point (kind = zerolocals) [0x00007f64b90102a0, 0x00007f64b90105e0] 832 bytes
R9 =0x00007f64bc00aee8 is an unknown value
R10=0x00007f64c3a0bee0: <offset 0xdb3ee0> in /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so at 0x00007f64c2c58000
R11=0x00007f64775d51bb: fn6_4+0 in /home/gabriel/Área de Trabalho/Eclipse/configuration/org.eclipse.osgi/673/0/.cp/libswt-gtk-4427.so at 0x00007f6477579000
R12=0x00007f64c48268a0 is pointing into the stack for thread: 0x00007f64bc00a800
R13=0x00007f64c4826880 is pointing into the stack for thread: 0x00007f64bc00a800
R14=0x00007f64bde99f70 is an unknown value
R15=0x00007f648c528d20: <offset 0x3d2d20> in /usr/lib/x86_64-linux-gnu/libgtk-3.so.0 at 0x00007f648c156000
Stack: [0x00007f64c472a000,0x00007f64c482b000], sp=0x00007f64c4826870, free space=1010k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libgtk-3.so.0+0x272435] gtk_tree_model_get_valist+0xf5
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.eclipse.swt.internal.gtk.OS._gtk_tree_model_get(JJI[JI)V+0
j org.eclipse.swt.internal.gtk.OS.gtk_tree_model_get(JJI[JI)V+15
j org.eclipse.swt.widgets.Combo.clearText()V+78
j org.eclipse.swt.widgets.Combo.setItems([Ljava/lang/String;)V+66
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite.updateRuntimeCombo(Lorg/eclipse/wst/server/core/IServerType;)V+237
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite.handleHostnameChange(Lorg/eclipse/wst/server/core/IServerType;)V+86
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite.setHost(Ljava/lang/String;)V+23
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite$2.hostnameSelected(Ljava/lang/String;)V+5
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite.hostnameChanged(Ljava/lang/String;)V+18
j org.eclipse.wst.server.ui.internal.wizard.page.NewManualServerComposite$HostnameChangedAction$1.run()V+14
j org.eclipse.swt.widgets.RunnableLock.run()V+11
j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+37
j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
j org.eclipse.swt.widgets.Display.readAndDispatch()Z+61
j org.eclipse.jface.window.Window.runEventLoop(Lorg/eclipse/swt/widgets/Shell;)V+23
j org.eclipse.jface.window.Window.open()I+49
j org.eclipse.wst.server.ui.internal.cnf.ServersView2$1.widgetSelected(Lorg/eclipse/swt/events/SelectionEvent;)V+28
j org.eclipse.swt.widgets.TypedListener.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+1133
J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V
j org.eclipse.swt.widgets.Display.sendEvent(Lorg/eclipse/swt/widgets/EventTable;Lorg/eclipse/swt/widgets/Event;)V+7
j org.eclipse.swt.widgets.Widget.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+26
j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V+73
j org.eclipse.swt.widgets.Widget.sendSelectionEvent(ILorg/eclipse/swt/widgets/Event;Z)V+140
j org.eclipse.swt.widgets.Link.gtk_button_release_event(JJ)J+157
j org.eclipse.swt.widgets.Widget.windowProc(JJJ)J+378
j org.eclipse.swt.widgets.Control.windowProc(JJJ)J+324
j org.eclipse.swt.widgets.Display.windowProc(JJJ)J+20
v ~StubRoutines::call_stub
j org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(J)V+0
j org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(J)V+8
j org.eclipse.swt.widgets.Display.eventProc(JJ)J+157
v ~StubRoutines::call_stub
j org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(JZ)Z+0
j org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(JZ)Z+9
j org.eclipse.swt.widgets.Display.readAndDispatch()Z+36
j org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run()V+638
j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(Lorg/eclipse/e4/ui/model/application/MApplicationElement;Lorg/eclipse/e4/core/contexts/IEclipseContext;)Ljava/lang/Object;+57
j org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(Lorg/eclipse/e4/ui/model/application/MApplicationElement;)V+20
j org.eclipse.ui.internal.Workbench$5.run()V+310
j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+111
j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+85
j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+82
j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+109
j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+132
v ~StubRoutines::call_stub
j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57
j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+160
j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00007f64bdf66800 JavaThread "pool-2-thread-1" [_thread_blocked, id=3136, stack(0x00007f64748e8000,0x00007f64749e9000)]
0x00007f64bd4ff000 JavaThread "Worker-6" [_thread_blocked, id=3133, stack(0x00007f64740e8000,0x00007f64741e9000)]
0x00007f64b4027800 JavaThread "Worker-5" [_thread_blocked, id=3132, stack(0x00007f64741e9000,0x00007f64742ea000)]
0x00007f64a400a800 JavaThread "Worker-4" [_thread_blocked, id=3131, stack(0x00007f64742ea000,0x00007f64743eb000)]
0x00007f6470034000 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=3130, stack(0x00007f64744eb000,0x00007f64745ec000)]
0x00007f64bd3e5000 JavaThread "JavaScript indexing" daemon [_thread_blocked, id=3126, stack(0x00007f6474b7c000,0x00007f6474c7d000)]
0x00007f64a4001800 JavaThread "Worker-3" [_thread_blocked, id=3125, stack(0x00007f6474a7b000,0x00007f6474b7c000)]
0x00007f64bd715000 JavaThread "EventAdmin Async Event Dispatcher Thread" daemon [_thread_blocked, id=3122, stack(0x00007f64842e7000,0x00007f64843e8000)]
0x00007f6498001000 JavaThread "Worker-2" [_thread_blocked, id=3120, stack(0x00007f647472c000,0x00007f647482d000)]
0x0000000001403000 JavaThread "Worker-1" [_thread_blocked, id=3119, stack(0x00007f6477831000,0x00007f6477932000)]
0x00007f64bd308000 JavaThread "Java indexing" daemon [_thread_blocked, id=3118, stack(0x00007f6477932000,0x00007f6477a33000)]
0x00007f6478112800 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=3117, stack(0x00007f6477bab000,0x00007f6477cac000)]
0x00007f64bcbac800 JavaThread "Worker-0" [_thread_blocked, id=3115, stack(0x00007f64845ea000,0x00007f64846eb000)]
0x00007f64bc6cb800 JavaThread "EMF Reference Cleaner" daemon [_thread_blocked, id=3110, stack(0x00007f64841e6000,0x00007f64842e7000)]
0x0000000001395800 JavaThread "Worker-JM" [_thread_blocked, id=3107, stack(0x00007f64843e8000,0x00007f64844e9000)]
0x00007f6470053000 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=3106, stack(0x00007f64844e9000,0x00007f64845ea000)]
0x00007f64bc5aa800 JavaThread "Start Level: Equinox Container: 807da408-7504-0014-1add-b3822bedfc68" daemon [_thread_blocked, id=3104, stack(0x00007f64846eb000,0x00007f64847ec000)]
0x00007f64bc5c6800 JavaThread "Framework Event Dispatcher: Equinox Container: 807da408-7504-0014-1add-b3822bedfc68" daemon [_thread_blocked, id=3103, stack(0x00007f648c055000,0x00007f648c156000)]
0x00007f64bc541000 JavaThread "Active Thread: Equinox Container: 807da408-7504-0014-1add-b3822bedfc68" [_thread_blocked, id=3102, stack(0x00007f64b00e4000,0x00007f64b01e5000)]
0x00007f64bc129000 JavaThread "Service Thread" daemon [_thread_blocked, id=3098, stack(0x00007f64b8316000,0x00007f64b8417000)]
0x00007f64bc127000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3097, stack(0x00007f64b8417000,0x00007f64b8518000)]
0x00007f64bc124000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3096, stack(0x00007f64b8518000,0x00007f64b8619000)]
0x00007f64bc121800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3095, stack(0x00007f64b8619000,0x00007f64b871a000)]
0x00007f64bc0ff000 JavaThread "Finalizer" daemon [_thread_blocked, id=3094, stack(0x00007f64b8dfe000,0x00007f64b8eff000)]
0x00007f64bc0fd000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3093, stack(0x00007f64b8eff000,0x00007f64b9000000)]
=>0x00007f64bc00a800 JavaThread "main" [_thread_in_native, id=3089, stack(0x00007f64c472a000,0x00007f64c482b000)]
Other Threads:
0x00007f64bc0f8800 VMThread [stack: 0x00007f64c00ae000,0x00007f64c01af000] [id=3092]
0x00007f64bc133800 WatcherThread [stack: 0x00007f64b8215000,0x00007f64b8316000] [id=3099]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
PSYoungGen total 125440K, used 118665K [0x00000000f5500000, 0x0000000100000000, 0x0000000100000000)
eden space 87040K, 93% used [0x00000000f5500000,0x00000000fa4aac58,0x00000000faa00000)
from space 38400K, 96% used [0x00000000fd700000,0x00000000ffb378b8,0x00000000ffc80000)
to space 44032K, 0% used [0x00000000faa00000,0x00000000faa00000,0x00000000fd500000)
ParOldGen total 83968K, used 59960K [0x00000000e0000000, 0x00000000e5200000, 0x00000000f5500000)
object space 83968K, 71% used [0x00000000e0000000,0x00000000e3a8e310,0x00000000e5200000)
PSPermGen total 88064K, used 87834K [0x00000000d0000000, 0x00000000d5600000, 0x00000000e0000000)
object space 88064K, 99% used [0x00000000d0000000,0x00000000d55c6a60,0x00000000d5600000)
Card table byte_map: [0x00007f64c122d000,0x00007f64c13ae000] byte_map_base: 0x00007f64c0bad000
Polling page: 0x00007f64c4848000
Code Cache [0x00007f64b9000000, 0x00007f64b9410000, 0x00007f64bc000000)
total_blobs=1765 nmethods=1075 adapters=642 free_code_cache=45105Kb largest_free_block=46124288
Compilation events (10 events):
Event: 54,499 Thread 0x00007f64bc124000 nmethod 1238 0x00007f64b93bb8d0 code [0x00007f64b93bba00, 0x00007f64b93bba78]
Event: 54,523 Thread 0x00007f64bc127000 nmethod 1237% 0x00007f64b93e0b10 code [0x00007f64b93e0d00, 0x00007f64b93e1758]
Event: 56,222 Thread 0x00007f64bc124000 1241 org.eclipse.swt.widgets.EventTable::hook (141 bytes)
Event: 56,236 Thread 0x00007f64bc124000 nmethod 1241 0x00007f64b93bfbd0 code [0x00007f64b93bfd60, 0x00007f64b93c0498]
Event: 56,345 Thread 0x00007f64bc127000 1242 org.eclipse.e4.core.internal.contexts.EclipseContext::getCalculatedComputations (31 bytes)
Event: 56,359 Thread 0x00007f64bc127000 nmethod 1242 0x00007f64b93852d0 code [0x00007f64b9385460, 0x00007f64b9385768]
Event: 56,397 Thread 0x00007f64bc124000 1243 org.eclipse.jface.action.MenuManager::update (278 bytes)
Event: 56,440 Thread 0x00007f64bc124000 nmethod 1243 0x00007f64b9386290 code [0x00007f64b93864c0, 0x00007f64b9386d70]
Event: 56,818 Thread 0x00007f64bc127000 1244 org.eclipse.core.internal.expressions.CompositeExpression::evaluateAnd (70 bytes)
Event: 56,829 Thread 0x00007f64bc127000 nmethod 1244 0x00007f64b93bf250 code [0x00007f64b93bf3e0, 0x00007f64b93bf718]
GC Heap History (10 events):
Event: 20,073 GC heap before
{Heap before GC invocations=8 (full 1):
PSYoungGen total 75776K, used 73602K [0x00000000f5500000, 0x00000000fb280000, 0x0000000100000000)
eden space 59904K, 100% used [0x00000000f5500000,0x00000000f8f80000,0x00000000f8f80000)
from space 15872K, 86% used [0x00000000fa100000,0x00000000fae60b68,0x00000000fb080000)
to space 17920K, 0% used [0x00000000f8f80000,0x00000000f8f80000,0x00000000fa100000)
ParOldGen total 45056K, used 30981K [0x00000000e0000000, 0x00000000e2c00000, 0x00000000f5500000)
object space 45056K, 68% used [0x00000000e0000000,0x00000000e1e41570,0x00000000e2c00000)
PSPermGen total 38400K, used 38139K [0x00000000d0000000, 0x00000000d2580000, 0x00000000e0000000)
object space 38400K, 99% used [0x00000000d0000000,0x00000000d253ec78,0x00000000d2580000)
Event: 20,164 GC heap after
Heap after GC invocations=8 (full 1):
PSYoungGen total 77824K, used 17908K [0x00000000f5500000, 0x00000000fd480000, 0x0000000100000000)
eden space 59904K, 0% used [0x00000000f5500000,0x00000000f5500000,0x00000000f8f80000)
from space 17920K, 99% used [0x00000000f8f80000,0x00000000fa0fd200,0x00000000fa100000)
to space 24576K, 0% used [0x00000000fbc80000,0x00000000fbc80000,0x00000000fd480000)
ParOldGen total 45056K, used 38448K [0x00000000e0000000, 0x00000000e2c00000, 0x00000000f5500000)
object space 45056K, 85% used [0x00000000e0000000,0x00000000e258c130,0x00000000e2c00000)
PSPermGen total 38400K, used 38139K [0x00000000d0000000, 0x00000000d2580000, 0x00000000e0000000)
object space 38400K, 99% used [0x00000000d0000000,0x00000000d253ec78,0x00000000d2580000)
}
Event: 20,164 GC heap before
{Heap before GC invocations=9 (full 2):
PSYoungGen total 77824K, used 17908K [0x00000000f5500000, 0x00000000fd480000, 0x0000000100000000)
eden space 59904K, 0% used [0x00000000f5500000,0x00000000f5500000,0x00000000f8f80000)
from space 17920K, 99% used [0x00000000f8f80000,0x00000000fa0fd200,0x00000000fa100000)
to space 24576K, 0% used [0x00000000fbc80000,0x00000000fbc80000,0x00000000fd480000)
ParOldGen total 45056K, used 38448K [0x00000000e0000000, 0x00000000e2c00000, 0x00000000f5500000)
object space 45056K, 85% used [0x00000000e0000000,0x00000000e258c130,0x00000000e2c00000)
PSPermGen total 38400K, used 38139K [0x00000000d0000000, 0x00000000d2580000, 0x00000000e0000000)
object space 38400K, 99% used [0x00000000d0000000,0x00000000d253ec78,0x00000000d2580000)
Event: 20,705 GC heap after
Heap after GC invocations=9 (full 2):
VM Arguments:
jvm_args: -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=256m -Xms40m -Xmx512m
java_command: /home/gabriel/Área de Trabalho/Eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar -os linux -ws gtk -arch x86_64 -showsplash /home/gabriel/Área de Trabalho/Eclipse//plugins/org.eclipse.platform_4.4.0.v20140606-1215/splash.bmp -launcher /home/gabriel/Área de Trabalho/Eclipse/eclipse -name Eclipse --launcher.library /home/gabriel/Área de Trabalho/Eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20140603-1326/eclipse_1605.so -startup /home/gabriel/Área de Trabalho/Eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar --launcher.appendVmargs -exitdata 918000 -product org.eclipse.epp.package.jee.product -vm /usr/bin/java -vmargs -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=256m -Xms40m -Xmx512m -jar /home/gabriel/Área de Trabalho/Eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
SHELL=/bin/bash
DISPLAY=:0.0
Well, i really need to do WEB aplications, anyone knows how to fix it ? Btw, i'm using Linux, Ubuntu 13.10. Thx!
You could get this error if your using Open JDK instead Oracle JDK. Best option is to switch to the Oracle JDK and check the issue.
There is an article explaining how to change the default JDK