I am writing my first JNI program in c++, and have made som test methods to make sure everything is working.
The problem is: When I call the method test, it gives very fluctuating results.
Sometimes it runs forever, other times i get an build error, other times i get a fatal error and an error message. Not only does this happen with printf and std::cout, but also with method calls (then I always get an fatal error. I have not included an example with this in the question).
I can't see to find the error. Hope for some help.
I am currently using g++ as compiler, with additional options: -D__int64=int64_t .
Java class:
public class JNI {
public static native int test();
public static native int test1(int a);
public static void main(String[] args) {
String filename = "Path-to-lib\\libProjectJNI.dll";
System.load(filename);
//Prints 10 - every time - as expected
System.out.println(test1(5));
//Hangs, build fails, or fatal error every time.
System.out.println(test());
}
}
C++ class:
#include "JNI.h"
#include <iostream>
#include <string>
JNIEXPORT jint JNICALL Java_project_JNI_test
(JNIEnv * env, jclass obj) {
std::cout << "PRINT THIS";
return 10;
}
JNIEXPORT jint JNICALL Java_project_JNI_test1
(JNIEnv *env, jclass obj, jint aint) {
return aint * 2;
}
C++ h:
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class project_JNI */
#ifndef _Included_project_JNI
#define _Included_project_JNI
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT jint JNICALL Java_project_JNI_test
(JNIEnv *, jclass);
JNIEXPORT jint JNICALL Java_project_JNI_test1
(JNIEnv *, jclass, jint);
#ifdef __cplusplus
}
#endif
#endif
Build error that some time occur:
\nbproject\build-impl.xml:1051: The following error occurred while executing this line:
\nbproject\build-impl.xml:805: Java returned: -1073741819
BUILD FAILED (total time: 0 seconds)
hs_err_pid### log
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (0x20474343), pid=33944, tid=3260
#
# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [KERNELBASE.dll+0x71f28]
#
# 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.
#
--------------- T H R E A D ---------------
Current thread (0x0000000002260800): JavaThread "main" [_thread_in_native, id=3260, stack(0x0000000002110000,0x0000000002210000)]
siginfo: ExceptionCode=0x20474343, ExceptionInformation=0x0000000600000070
Registers:
RAX=0x0000000000000000, RBX=0x0000000600000070, RCX=0x0000000000000000, RDX=0x0000000000000000
RSP=0x000000000220f460, RBP=0x000000000220f730, RSI=0x00000003fefac4f0, RDI=0x00000006000000b0
R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
R12=0x0000000000000000, R13=0x000000000000000a, R14=0x000000000220f670, R15=0x00000005696e3030
RIP=0x00007ffb434f1f28, EFLAGS=0x0000000000000206
Top of Stack: (sp=0x000000000220f460)
0x000000000220f460: 00000000ffffffff 0000000600000070
0x000000000220f470: 00000003fefac4f0 00000006000000b0
0x000000000220f480: 0000000020474343 0000000000000000
0x000000000220f490: 00007ffb434f1f28 0000000600000001
0x000000000220f4a0: 0000000600000070 000000000000000a
0x000000000220f4b0: 0000000600000300 00000001800ce32c
0x000000000220f4c0: 00000001801523c1 000000000220f480
0x000000000220f4d0: 00000003fefbfec0 0000000180156860
0x000000000220f4e0: 00000006000001e0 0000000000000001
0x000000000220f4f0: 00000000000000b0 000000000220f730
0x000000000220f500: 0000000000000000 0000000000000000
0x000000000220f510: 0000000000000008 00000003ffa4d5ea
0x000000000220f520: 000077d3bf56b135 00000003fefbfec0
0x000000000220f530: 000000000220f4e0 00000003ffa4cc97
0x000000000220f540: 00000006000000b0 00000003fefac4f0
0x000000000220f550: 00000003fefcbcd0 000000000220f730
Instructions: (pc=0x00007ffb434f1f28)
0x00007ffb434f1f08: 49 8b d1 44 0f 47 c0 44 89 44 24 38 49 c1 e0 03
0x00007ffb434f1f18: e8 27 b2 00 00 48 8d 4c 24 20 ff 15 c8 a7 05 00
0x00007ffb434f1f28: 48 8b 8c 24 c0 00 00 00 48 33 cc e8 98 7a 00 00
0x00007ffb434f1f38: 48 81 c4 d8 00 00 00 c3 83 64 24 38 00 eb d6 cc
Register to memory mapping:
RAX=0x0000000000000000 is an unknown value
RBX=0x0000000600000070 is an unknown value
RCX=0x0000000000000000 is an unknown value
RDX=0x0000000000000000 is an unknown value
RSP=0x000000000220f460 is pointing into the stack for thread: 0x0000000002260800
RBP=0x000000000220f730 is pointing into the stack for thread: 0x0000000002260800
RSI=0x00000003fefac4f0 is an unknown value
RDI=0x00000006000000b0 is an unknown value
R8 =0x0000000000000000 is an unknown value
R9 =0x0000000000000000 is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000000000000 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x000000000000000a is an unknown value
R14=0x000000000220f670 is pointing into the stack for thread: 0x0000000002260800
R15=0x00000005696e3030 is an unknown value
Stack: [0x0000000002110000,0x0000000002210000], sp=0x000000000220f460, free space=1021k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [KERNELBASE.dll+0x71f28]
C [cyggcc_s-seh-1.dll+0xcc97]
C [cygstdc++-6.dll+0xba6d1]
C [cygstdc++-6.dll+0xb0a7f]
C [cygstdc++-6.dll+0xada61]
C [cygstdc++-6.dll+0xaff59]
C [cygstdc++-6.dll+0xb4ee7]
C [libProjectJNI.dll+0x10b3]
C 0x0000000002375e34
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j gol.s305089.JNI.test()I+0
j gol.s305089.JNI.main([Ljava/lang/String;)V+20
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00000000187fc800 JavaThread "Service Thread" daemon [_thread_blocked, id=2792, stack(0x0000000018bd0000,0x0000000018cd0000)]
0x0000000016e97000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=35452, stack(0x00000000186d0000,0x00000000187d0000)]
0x0000000016e8f800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=15496, stack(0x00000000185d0000,0x00000000186d0000)]
0x0000000016e8d800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=17716, stack(0x00000000184d0000,0x00000000185d0000)]
0x0000000016e8b000 JavaThread "Attach Listener" daemon [_thread_blocked, id=26948, stack(0x00000000183d0000,0x00000000184d0000)]
0x0000000016e89800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9012, stack(0x00000000182d0000,0x00000000183d0000)]
0x0000000002356800 JavaThread "Finalizer" daemon [_thread_blocked, id=24532, stack(0x00000000180e0000,0x00000000181e0000)]
0x000000000234d800 JavaThread "Reference Handler" daemon [_thread_blocked, id=35052, stack(0x0000000017fe0000,0x00000000180e0000)]
=>0x0000000002260800 JavaThread "main" [_thread_in_native, id=3260, stack(0x0000000002110000,0x0000000002210000)]
Other Threads:
0x0000000016e58000 VMThread [stack: 0x0000000017ee0000,0x0000000017fe0000] [id=4028]
0x0000000018803000 WatcherThread [stack: 0x0000000018cd0000,0x0000000018dd0000] [id=7356]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 38400K, used 1996K [0x00000000d5f00000, 0x00000000d8980000, 0x0000000100000000)
eden space 33280K, 6% used [0x00000000d5f00000,0x00000000d60f33f8,0x00000000d7f80000)
from space 5120K, 0% used [0x00000000d8480000,0x00000000d8480000,0x00000000d8980000)
to space 5120K, 0% used [0x00000000d7f80000,0x00000000d7f80000,0x00000000d8480000)
ParOldGen total 87552K, used 0K [0x0000000081c00000, 0x0000000087180000, 0x00000000d5f00000)
object space 87552K, 0% used [0x0000000081c00000,0x0000000081c00000,0x0000000087180000)
Metaspace used 2783K, capacity 4486K, committed 4864K, reserved 1056768K
class space used 302K, capacity 386K, committed 512K, reserved 1048576K
Card table byte_map: [0x0000000011720000,0x0000000011b20000] byte_map_base: 0x0000000011312000
Marking Bits: (ParMarkBitMap*) 0x0000000070aca5b0
Begin Bits: [0x00000000121d0000, 0x0000000014160000)
End Bits: [0x0000000014160000, 0x00000000160f0000)
Polling page: 0x0000000000910000
CodeCache: size=245760Kb used=1102Kb max_used=1102Kb free=244657Kb
bounds [0x0000000002360000, 0x00000000025d0000, 0x0000000011360000]
total_blobs=260 nmethods=26 adapters=148
compilation: enabled
Compilation events (10 events):
Event: 0.079 Thread 0x0000000016e97000 22 3 java.util.jar.Attributes$Name::isAlpha (30 bytes)
Event: 0.079 Thread 0x0000000016e97000 nmethod 22 0x000000000246fb50 code [0x000000000246fcc0, 0x000000000246fef0]
Event: 0.080 Thread 0x0000000016e97000 23 3 sun.misc.ASCIICaseInsensitiveComparator::toLower (16 bytes)
Event: 0.080 Thread 0x0000000016e97000 nmethod 23 0x0000000002472950 code [0x0000000002472ac0, 0x0000000002472d10]
Event: 0.080 Thread 0x0000000016e97000 24 3 sun.misc.ASCIICaseInsensitiveComparator::isUpper (18 bytes)
Event: 0.080 Thread 0x0000000016e97000 nmethod 24 0x0000000002472dd0 code [0x0000000002472f20, 0x00000000024730d0]
Event: 0.080 Thread 0x0000000016e97000 25 3 java.lang.String::getChars (62 bytes)
Event: 0.081 Thread 0x0000000016e97000 nmethod 25 0x0000000002473150 code [0x0000000002473300, 0x0000000002473738]
Event: 0.082 Thread 0x0000000016e97000 26 3 java.lang.System::getSecurityManager (4 bytes)
Event: 0.082 Thread 0x0000000016e97000 nmethod 26 0x0000000002473950 code [0x0000000002473aa0, 0x0000000002473bd0]
GC Heap History (0 events):
No events
Deoptimization events (0 events):
No events
Internal exceptions (2 events):
Event: 0.028 Thread 0x0000000002260800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000d5f0da00) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u60\4407\hotspot\srÃö×O ?
Event: 0.028 Thread 0x0000000002260800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000d5f0dce8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u60\4407\hotspot\src\share\vm\prims\j
Events (10 events):
Event: 0.081 loading class java/security/UnresolvedPermission
Event: 0.082 loading class java/security/UnresolvedPermission done
Event: 0.082 loading class java/security/BasicPermissionCollection
Event: 0.082 loading class java/security/BasicPermissionCollection done
Event: 0.082 loading class sun/launcher/LauncherHelper$FXHelper
Event: 0.082 loading class sun/launcher/LauncherHelper$FXHelper done
Event: 0.082 loading class java/lang/Class$MethodArray
Event: 0.082 loading class java/lang/Class$MethodArray done
Event: 0.082 loading class java/lang/Void
Event: 0.082 loading class java/lang/Void done
Dynamic libraries:
0x00007ff69b060000 - 0x00007ff69b097000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\java.exe
0x00007ffb465f0000 - 0x00007ffb467b1000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffb45170000 - 0x00007ffb4521d000 C:\WINDOWS\system32\KERNEL32.DLL
0x00007ffb43480000 - 0x00007ffb43668000 C:\WINDOWS\system32\KERNELBASE.dll
0x00007ffb45850000 - 0x00007ffb458f7000 C:\WINDOWS\system32\ADVAPI32.dll
0x00007ffb452f0000 - 0x00007ffb4538d000 C:\WINDOWS\system32\msvcrt.dll
0x00007ffb45530000 - 0x00007ffb4558b000 C:\WINDOWS\system32\sechost.dll
0x00007ffb46020000 - 0x00007ffb4613c000 C:\WINDOWS\system32\RPCRT4.dll
0x00007ffb45e60000 - 0x00007ffb45fb6000 C:\WINDOWS\system32\USER32.dll
0x00007ffb45390000 - 0x00007ffb45516000 C:\WINDOWS\system32\GDI32.dll
0x00007ffb3e860000 - 0x00007ffb3ead4000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.10586.0_none_8c15ae12515e1c22\COMCTL32.dll
0x00007ffb45a20000 - 0x00007ffb45c9d000 C:\WINDOWS\system32\combase.dll
0x00007ffb43840000 - 0x00007ffb438aa000 C:\WINDOWS\system32\bcryptPrimitives.dll
0x00007ffb45fe0000 - 0x00007ffb4601b000 C:\WINDOWS\system32\IMM32.DLL
0x00000000726a0000 - 0x0000000072772000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\msvcr100.dll
0x00000000702c0000 - 0x0000000070b49000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\server\jvm.dll
0x00007ffb45520000 - 0x00007ffb45528000 C:\WINDOWS\system32\PSAPI.DLL
0x00007ffb40550000 - 0x00007ffb40573000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffb37a00000 - 0x00007ffb37a09000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffb412a0000 - 0x00007ffb412aa000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffb459b0000 - 0x00007ffb45a1b000 C:\WINDOWS\system32\WS2_32.dll
0x00007ffb404f0000 - 0x00007ffb4051c000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007ffb42de0000 - 0x00007ffb42e23000 C:\WINDOWS\system32\cfgmgr32.dll
0x0000000072650000 - 0x000000007265f000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\verify.dll
0x0000000072620000 - 0x0000000072649000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\java.dll
0x0000000072600000 - 0x0000000072616000 C:\Program Files\Java\jdk1.8.0_60\jre\bin\zip.dll
0x00007ffb439f0000 - 0x00007ffb44f4c000 C:\WINDOWS\system32\SHELL32.dll
0x00007ffb42e30000 - 0x00007ffb43475000 C:\WINDOWS\system32\windows.storage.dll
0x00007ffb46140000 - 0x00007ffb46192000 C:\WINDOWS\system32\shlwapi.dll
0x00007ffb42c60000 - 0x00007ffb42c6f000 C:\WINDOWS\system32\kernel.appcore.dll
0x00007ffb42d20000 - 0x00007ffb42dd5000 C:\WINDOWS\system32\shcore.dll
0x00007ffb42c10000 - 0x00007ffb42c5b000 C:\WINDOWS\system32\powrprof.dll
0x00007ffb42c70000 - 0x00007ffb42c84000 C:\WINDOWS\system32\profapi.dll
0x00000005696e0000 - 0x0000000569704000 C:\Users\active-folder-jni\dist\Debug\Cygwin-Windows\libProjectJNI.dll
0x0000000180040000 - 0x0000000180640000 C:\cygwin64\bin\cygwin1.dll
0x00000003fef00000 - 0x00000003ff055000 C:\cygwin64\bin\cygstdc++-6.dll
0x00000003ffa40000 - 0x00000003ffa5a000 C:\cygwin64\bin\cyggcc_s-seh-1.dll
0x00007ffb2c030000 - 0x00007ffb2c1bc000 C:\WINDOWS\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=UTF-8
java_command: gol.s305089.JNI
java_class_path (initial): C:\Users\active-folder-java-src\dist\Project.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\plugin.jar;C:\Users\active-folder-java-src\build\classes
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\Program Files (x86)\iis express\PHP\v5.3;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\MATLAB\R2015b\runtime\win64;C:\Program Files\MATLAB\R2015b\bin;C:\Program Files\Git\cmd;C:\Program Files (x86)\MiKTeX 2.9\miktex\bin\;C:\cygwin64\bin;C:\Program Files\Java\jdk1.8.0_60\bin
USERNAME=myUsername
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 10586 (10.0.10586.0)
CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 60 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2
Memory: 4k page, physical 8268824k(3297764k free), swap 9579544k(2510856k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.60-b23) for windows-amd64 JRE (1.8.0_60-b27), built on Aug 4 2015 11:06:27 by "java_re" with MS VC++ 10.0 (VS2010)
time: Sat Apr 30 21:52:33 2016
elapsed time: 0 seconds (0d 0h 0m 0s)
Is it as simple as the C++ side is giving an 8-byte integer address but Java thinks the int type you are receiving is a 4-byte integer?
Java 8 SDK notes say int is 32 bit.
https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html
Since you are returning a (probably 64-bit) integer from C++ and then Java is "casting" it as a 32 bit type. Try changing the return type in the Java side to a long and see if it works.
public static native long test1(int a);
Also, why not try the following to see if you can tell where the crash happens?
long n = test1(5); // get the value into a 64 bit int
System.out.format("%d%n", n); // print it separately
Related
So I'm new to OpenGL, and I've been following several tutorials on how to draw a simple triangle. I don't use shaders here, even though I know how to use them. The tutorials say to create a buffer using glCreateBuffers, but everything I change in the code doesn't prevent the error. I've been following the OpenGL Programming Guide, and watched several YouTube videos on the topic. I've also updated to the most recent NVIDIA drivers for my graphics card. What did I do wrong?
The error, which also contains all of the hardware specifications:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fffa120235d, pid=4592, tid=0x00000000000035a8
#
# JRE version: Java(TM) SE Runtime Environment (8.0_101-b13) (build 1.8.0_101-b13)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.101-b13 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [lwjgl_opengl.dll+0x235d]
#
# 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.
#
--------------- T H R E A D ---------------
Current thread (0x00000000032a9000): JavaThread "main" [_thread_in_native, id=13736, stack(0x0000000003160000,0x0000000003260000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000830
Registers:
RAX=0x000000005619ed50, RBX=0x000000001a523d28, RCX=0x0000000000000001, RDX=0x000000001daa7d5c
RSP=0x000000000325f4f8, RBP=0x000000000325f580, RSI=0x0000000000000048, RDI=0x0000000003507e70
R8 =0x0000000000000001, R9 =0x000000001daa7d5c, R10=0x0000000000000000, R11=0x0000000055c2b4a0
R12=0x0000000000000000, R13=0x000000001a523d28, R14=0x000000000325f5b0, R15=0x00000000032a9000
RIP=0x00007fffa120235d, EFLAGS=0x0000000000010202
Top of Stack: (sp=0x000000000325f4f8)
0x000000000325f4f8: 0000000003517f54 0000000003507e70
0x000000000325f508: 0000000003517cbd 00000000032a9000
0x000000000325f518: 000000001a523d28 0000000000000048
0x000000000325f528: 00000000032a9000 000000000325f628
0x000000000325f538: 0000000003517c82 000000000325f540
0x000000000325f548: 000000001a523d28 000000000325f5b0
0x000000000325f558: 000000001a539f98 0000000000000000
0x000000000325f568: 000000001a523d28 0000000000000000
0x000000000325f578: 000000000325f5a0 000000000325f5f8
0x000000000325f588: 000000000350835d 00000007813fb2d8
0x000000000325f598: 00000000035119d8 000000001daa7d5c
0x000000000325f5a8: 0000000781481140 0000000000000001
0x000000000325f5b8: 000000000325f5b8 000000001a523e7c
0x000000000325f5c8: 000000000325f628 000000001a539f98
0x000000000325f5d8: 0000000000000000 000000001a523ee0
0x000000000325f5e8: 000000000325f5a0 000000000325f630
Instructions: (pc=0x00007fffa120235d)
0x00007fffa120233d: ff a2 28 17 00 00 cc cc cc cc cc cc cc cc cc cc
0x00007fffa120234d: cc cc cc 48 8b 01 49 8b d1 41 8b c8 4c 8b 50 18
0x00007fffa120235d: 49 ff a2 30 08 00 00 cc cc cc cc cc cc cc cc cc
0x00007fffa120236d: cc cc cc 40 53 48 8b 01 41 8b d8 4c 8b 44 24 30
Register to memory mapping:
RAX=0x000000005619ed50 is an unknown value
RBX={method} {0x000000001a523d30} 'nglCreateBuffers' '(IJ)V' in 'org/lwjgl/opengl/GL45'
RCX=0x0000000000000001 is an unknown value
RDX=0x000000001daa7d5c is an unknown value
RSP=0x000000000325f4f8 is pointing into the stack for thread: 0x00000000032a9000
RBP=0x000000000325f580 is pointing into the stack for thread: 0x00000000032a9000
RSI=0x0000000000000048 is an unknown value
RDI=0x0000000003507e70 is at code_begin+1040 in an Interpreter codelet
invoke return entry points [0x0000000003507a60, 0x0000000003508440] 2528 bytes
R8 =0x0000000000000001 is an unknown value
R9 =0x000000001daa7d5c is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000055c2b4a0 is an unknown value
R12=0x0000000000000000 is an unknown value
R13={method} {0x000000001a523d30} 'nglCreateBuffers' '(IJ)V' in 'org/lwjgl/opengl/GL45'
R14=0x000000000325f5b0 is pointing into the stack for thread: 0x00000000032a9000
R15=0x00000000032a9000 is a thread
Stack: [0x0000000003160000,0x0000000003260000], sp=0x000000000325f4f8, free space=1021k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [lwjgl_opengl.dll+0x235d]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.lwjgl.opengl.GL45.nglCreateBuffers(IJ)V+0
j org.lwjgl.opengl.GL45.glCreateBuffers()I+20
j com.meti.HelloTriangle.init()V+169
j com.meti.HelloTriangle.run()V+1
j com.meti.HelloTriangle.main([Ljava/lang/String;)V+7
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x000000001cbaf000 JavaThread "Service Thread" daemon [_thread_blocked, id=15408, stack(0x000000001d6a0000,0x000000001d7a0000)]
0x000000001cbb6800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=4928, stack(0x000000001d5a0000,0x000000001d6a0000)]
0x000000001cbae000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=15648, stack(0x000000001d4a0000,0x000000001d5a0000)]
0x000000001cbb2800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3528, stack(0x000000001d3a0000,0x000000001d4a0000)]
0x000000001cbad800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2988, stack(0x000000001d2a0000,0x000000001d3a0000)]
0x000000001caf6000 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=10828, stack(0x000000001d1a0000,0x000000001d2a0000)]
0x000000001c8e4800 JavaThread "Attach Listener" daemon [_thread_blocked, id=15864, stack(0x000000001d0a0000,0x000000001d1a0000)]
0x000000001c8e3000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=13440, stack(0x000000001cfa0000,0x000000001d0a0000)]
0x000000001a9e4000 JavaThread "Finalizer" daemon [_thread_blocked, id=15624, stack(0x000000001ccb0000,0x000000001cdb0000)]
0x000000000339e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=13760, stack(0x000000001c7b0000,0x000000001c8b0000)]
=>0x00000000032a9000 JavaThread "main" [_thread_in_native, id=13736, stack(0x0000000003160000,0x0000000003260000)]
Other Threads:
0x000000001a9d9000 VMThread [stack: 0x000000001c6b0000,0x000000001c7b0000] [id=13368]
0x000000001cbc0000 WatcherThread [stack: 0x000000001dfa0000,0x000000001e0a0000] [id=13180]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 57344K, used 11847K [0x0000000780900000, 0x0000000784900000, 0x00000007c0000000)
eden space 49152K, 24% used [0x0000000780900000,0x0000000781491f48,0x0000000783900000)
from space 8192K, 0% used [0x0000000784100000,0x0000000784100000,0x0000000784900000)
to space 8192K, 0% used [0x0000000783900000,0x0000000783900000,0x0000000784100000)
ParOldGen total 131072K, used 0K [0x0000000701a00000, 0x0000000709a00000, 0x0000000780900000)
object space 131072K, 0% used [0x0000000701a00000,0x0000000701a00000,0x0000000709a00000)
Metaspace used 6034K, capacity 6220K, committed 6400K, reserved 1056768K
class space used 655K, capacity 738K, committed 768K, reserved 1048576K
Card table byte_map: [0x00000000128c0000,0x0000000012ec0000] byte_map_base: 0x000000000f0b3000
Marking Bits: (ParMarkBitMap*) 0x000000005621a6d0
Begin Bits: [0x0000000013ac0000, 0x0000000016a58000)
End Bits: [0x0000000016a58000, 0x00000000199f0000)
Polling page: 0x0000000001300000
CodeCache: size=245760Kb used=2341Kb max_used=2353Kb free=243418Kb
bounds [0x0000000003500000, 0x0000000003770000, 0x0000000012500000]
total_blobs=1191 nmethods=469 adapters=635
compilation: enabled
Compilation events (10 events):
Event: 0.540 Thread 0x000000001cbb6800 465 3 java.util.zip.InflaterInputStream::read (32 bytes)
Event: 0.540 Thread 0x000000001cbb6800 nmethod 465 0x0000000003745dd0 code [0x0000000003745f60, 0x00000000037463d8]
Event: 0.541 Thread 0x000000001cbb6800 466 3 java.util.WeakHashMap::remove (133 bytes)
Event: 0.542 Thread 0x000000001cbb6800 nmethod 466 0x0000000003746590 code [0x0000000003746780, 0x0000000003747268]
Event: 0.545 Thread 0x000000001cbad800 nmethod 463 0x000000000374a6d0 code [0x000000000374a820, 0x000000000374ac38]
Event: 0.545 Thread 0x000000001cbb6800 467 3 sun.misc.JarIndex::get (49 bytes)
Event: 0.545 Thread 0x000000001cbb6800 nmethod 467 0x0000000003749950 code [0x0000000003749b20, 0x000000000374a398]
Event: 0.546 Thread 0x000000001cbae000 468 4 java.lang.String::indexOf (166 bytes)
Event: 0.546 Thread 0x000000001cbb6800 469 3 java.net.URL::toString (5 bytes)
Event: 0.546 Thread 0x000000001cbb6800 nmethod 469 0x0000000003749410 code [0x0000000003749580, 0x0000000003749868]
GC Heap History (0 events):
No events
Deoptimization events (1 events):
Event: 0.270 Thread 0x00000000032a9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000367a394 method=java.lang.String.indexOf([CII[CIII)I # 134
Internal exceptions (10 events):
Event: 0.039 Thread 0x00000000032a9000 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x0000000780907fa8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\��1����?
Event: 0.234 Thread 0x00000000032a9000 Exception <a 'java/lang/NoSuchMethodError': java.lang.Object.lambda$static$0(Ljava/lang/String;)Ljava/lang/Boolean;> (0x0000000780f3d758) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\interpreter\linkResolver.:%�l��?
Event: 0.248 Thread 0x00000000032a9000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x0000000780fbfba0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.249 Thread 0x00000000032a9000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x0000000780fcda48) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
Event: 0.296 Thread 0x00000000032a9000 Exception <a 'java/security/PrivilegedActionException'> (0x00000007811bcef8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jvm.cpp, line 1386]
Event: 0.296 Thread 0x00000000032a9000 Exception <a 'java/security/PrivilegedActionException'> (0x00000007811bd108) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jvm.cpp, line 1386]
Event: 0.296 Thread 0x00000000032a9000 Exception <a 'java/security/PrivilegedActionException'> (0x00000007811c11d8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jvm.cpp, line 1386]
Event: 0.296 Thread 0x00000000032a9000 Exception <a 'java/security/PrivilegedActionException'> (0x00000007811c13e8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jvm.cpp, line 1386]
Event: 0.543 Thread 0x00000000032a9000 Exception <a 'sun/nio/fs/WindowsException'> (0x0000000781462538) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 0.544 Thread 0x00000000032a9000 Exception <a 'sun/nio/fs/WindowsException'> (0x0000000781463f38) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u101\7261\hotspot\src\share\vm\prims\jni.cpp, line 709]
Events (10 events):
Event: 0.544 loading class java/nio/file/NoSuchFileException
Event: 0.544 loading class java/nio/file/FileSystemException
Event: 0.544 loading class java/nio/file/FileSystemException done
Event: 0.544 loading class java/nio/file/NoSuchFileException done
Event: 0.544 loading class org/lwjgl/opengl/GL$1
Event: 0.544 loading class org/lwjgl/opengl/GL$1 done
Event: 0.545 loading class org/lwjgl/opengl/GL$SharedLibraryGL
Event: 0.545 loading class org/lwjgl/opengl/GL$SharedLibraryGL done
Event: 0.545 loading class org/lwjgl/system/SharedLibrary$Delegate
Event: 0.545 loading class org/lwjgl/system/SharedLibrary$Delegate done
Dynamic libraries:
0x00007ff63a440000 - 0x00007ff63a477000 C:\Program Files\Java\jdk1.8.0_101\bin\java.exe
0x00007fffbc000000 - 0x00007fffbc1db000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007fffbb630000 - 0x00007fffbb6de000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007fffb86c0000 - 0x00007fffb8909000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007fffbabe0000 - 0x00007fffbac81000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007fffbbf60000 - 0x00007fffbbffd000 C:\WINDOWS\System32\msvcrt.dll
0x00007fffbb6e0000 - 0x00007fffbb739000 C:\WINDOWS\System32\sechost.dll
0x00007fffbb8a0000 - 0x00007fffbb9c5000 C:\WINDOWS\System32\RPCRT4.dll
0x00007fffbb750000 - 0x00007fffbb89a000 C:\WINDOWS\System32\USER32.dll
0x00007fffb8970000 - 0x00007fffb898e000 C:\WINDOWS\System32\win32u.dll
0x00007fffbaa60000 - 0x00007fffbaa87000 C:\WINDOWS\System32\GDI32.dll
0x00007fffb93d0000 - 0x00007fffb9558000 C:\WINDOWS\System32\gdi32full.dll
0x00007fffb8620000 - 0x00007fffb86ba000 C:\WINDOWS\System32\msvcp_win.dll
0x00007fffb8520000 - 0x00007fffb8616000 C:\WINDOWS\System32\ucrtbase.dll
0x00007fffa8480000 - 0x00007fffa86e7000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll
0x00007fffbba70000 - 0x00007fffbbd69000 C:\WINDOWS\System32\combase.dll
0x00007fffb8990000 - 0x00007fffb89fa000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007fffbbd90000 - 0x00007fffbbdbd000 C:\WINDOWS\System32\IMM32.DLL
0x00000000562a0000 - 0x0000000056372000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\msvcr100.dll
0x0000000055a00000 - 0x000000005629a000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\server\jvm.dll
0x00007fffbb9d0000 - 0x00007fffbb9d8000 C:\WINDOWS\System32\PSAPI.DLL
0x00007fffb46f0000 - 0x00007fffb46f9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007fffb5410000 - 0x00007fffb5433000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007fffbb360000 - 0x00007fffbb3cc000 C:\WINDOWS\System32\WS2_32.dll
0x00007fffabe10000 - 0x00007fffabe3b000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007fffad5f0000 - 0x00007fffad5fa000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007fffb8a00000 - 0x00007fffb8a49000 C:\WINDOWS\System32\cfgmgr32.dll
0x0000000057380000 - 0x000000005738f000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\verify.dll
0x0000000057350000 - 0x0000000057379000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\java.dll
0x0000000057320000 - 0x0000000057343000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\instrument.dll
0x0000000057300000 - 0x0000000057316000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\zip.dll
0x00007fffb9620000 - 0x00007fffbaa56000 C:\WINDOWS\System32\SHELL32.dll
0x00007fffbaa90000 - 0x00007fffbab3a000 C:\WINDOWS\System32\shcore.dll
0x00007fffb8a50000 - 0x00007fffb9143000 C:\WINDOWS\System32\windows.storage.dll
0x00007fffbb190000 - 0x00007fffbb1e1000 C:\WINDOWS\System32\shlwapi.dll
0x00007fffb8490000 - 0x00007fffb84a1000 C:\WINDOWS\System32\kernel.appcore.dll
0x00007fffb84b0000 - 0x00007fffb84fc000 C:\WINDOWS\System32\powrprof.dll
0x00007fffb8470000 - 0x00007fffb8485000 C:\WINDOWS\System32\profapi.dll
0x00007fffabef0000 - 0x00007fffabf0a000 C:\Users\mathm\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-1\172.3968.16\bin\breakgen64.dll
0x00000000559e0000 - 0x00000000559fa000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\net.dll
0x00007fffb7d20000 - 0x00007fffb7d7c000 C:\WINDOWS\system32\mswsock.dll
0x00000000559c0000 - 0x00000000559d1000 C:\Program Files\Java\jdk1.8.0_101\jre\bin\nio.dll
0x00007fffa87b0000 - 0x00007fffa8807000 C:\Users\mathm\AppData\Local\Temp\lwjglmathm\3.1.2-build-29\lwjgl.dll
0x00007fffa8770000 - 0x00007fffa87ac000 C:\Users\mathm\AppData\Local\Temp\lwjglmathm\3.1.2-build-29\jemalloc.dll
0x00007fffa5e30000 - 0x00007fffa5e6d000 C:\Users\mathm\AppData\Local\Temp\lwjglmathm\3.1.2-build-29\glfw.dll
0x00007fffb6ce0000 - 0x00007fffb6d75000 C:\WINDOWS\system32\uxtheme.dll
0x00007fffa4f50000 - 0x00007fffa4f92000 C:\WINDOWS\SYSTEM32\dinput8.dll
0x00007fffb4630000 - 0x00007fffb463e000 C:\WINDOWS\SYSTEM32\xinput1_4.dll
0x00007fffb6f90000 - 0x00007fffb6fb8000 C:\WINDOWS\SYSTEM32\DEVOBJ.dll
0x00007fffad130000 - 0x00007fffad15a000 C:\WINDOWS\SYSTEM32\dwmapi.dll
0x00007fffbb1f0000 - 0x00007fffbb356000 C:\WINDOWS\System32\MSCTF.dll
0x00007fffbb0d0000 - 0x00007fffbb190000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007fffaccf0000 - 0x00007fffacd18000 c:\program files\nvidia corporation\nvstreamsrv\nvinject.dll
0x00007fffb7320000 - 0x00007fffb732d000 C:\WINDOWS\SYSTEM32\HID.DLL
0x00007fffbac90000 - 0x00007fffbb0cb000 C:\WINDOWS\System32\SETUPAPI.DLL
0x00007fffb8910000 - 0x00007fffb8966000 C:\WINDOWS\System32\WINTRUST.dll
0x00007fffb8500000 - 0x00007fffb8511000 C:\WINDOWS\System32\MSASN1.dll
0x00007fffb9200000 - 0x00007fffb93c9000 C:\WINDOWS\System32\CRYPT32.dll
0x00007fffa1290000 - 0x00007fffa13b1000 C:\WINDOWS\SYSTEM32\opengl32.dll
0x00007fffad870000 - 0x00007fffad89c000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007fff66980000 - 0x00007fff676ca000 C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_463164d40c3d26ce\ig9icd64.dll
0x00007fffb48f0000 - 0x00007fffb4903000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007fffa3730000 - 0x00007fffa488d000 C:\WINDOWS\System32\DriverStore\FileRepository\igdlh64.inf_amd64_463164d40c3d26ce\igc64.dll
0x00007fffaf3b0000 - 0x00007fffaf432000 C:\WINDOWS\System32\TextInputFramework.dll
0x00007fffb5ee0000 - 0x00007fffb5fc3000 C:\WINDOWS\System32\CoreMessaging.dll
0x00007fffa76a0000 - 0x00007fffa7972000 C:\WINDOWS\System32\CoreUIComponents.dll
0x00007fffb1f30000 - 0x00007fffb1f45000 C:\WINDOWS\SYSTEM32\usermgrcli.dll
0x00007fffb7670000 - 0x00007fffb76a1000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007fffb52d0000 - 0x00007fffb5409000 C:\WINDOWS\SYSTEM32\wintypes.dll
0x00007fffa1200000 - 0x00007fffa125c000 C:\Users\mathm\AppData\Local\Temp\lwjglmathm\3.1.2-build-29\lwjgl_opengl.dll
0x00007fffb42c0000 - 0x00007fffb4469000 C:\WINDOWS\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -javaagent:C:\Users\mathm\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-1\172.3968.16\lib\idea_rt.jar=53725:C:\Users\mathm\AppData\Local\JetBrains\Toolbox\apps\IDEA-C\ch-1\172.3968.16\bin -Dfile.encoding=UTF-8
java_command: com.meti.HelloTriangle
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_101\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_101\jre\lib\rt.jar;C:\Meticuli\Projects\LwjglProjects\out\production\LwjglProjects;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl-javadoc.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl-sources.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl-natives-linux.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl-natives-macos.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl\lwjgl-natives-windows.jar;C:\Meticuli\Projects\LwjglProjects\libraries\lwjgl-3.1.2\lwjgl-assimp\lwjgl-assimp.jar;
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\WINDOWS\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\Git\cmd;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\mathm\AppData\Local\Microsoft\WindowsApps;
USERNAME=mathm
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296)
CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 94 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
Memory: 4k page, physical 12476176k(7696764k free), swap 13296400k(7350476k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.101-b13) for windows-amd64 JRE (1.8.0_101-b13), built on Jun 22 2016 01:21:29 by "java_re" with MS VC++ 10.0 (VS2010)
time: Sat Sep 16 16:46:48 2017
elapsed time: 0 seconds (0d 0h 0m 0s)
I do hate working with native code in Java, albeit knowing OpenGL is a good skill to have.
Here is the source code:
package com.meti;
import org.lwjgl.glfw.GLFWErrorCallback;
import org.lwjgl.opengl.GL;
import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.opengl.GL15.GL_ARRAY_BUFFER;
import static org.lwjgl.opengl.GL15.glBindBuffer;
import static org.lwjgl.opengl.GL20.glEnableVertexAttribArray;
import static org.lwjgl.opengl.GL20.glVertexAttribPointer;
import static org.lwjgl.opengl.GL30.glBindVertexArray;
import static org.lwjgl.opengl.GL30.glGenVertexArrays;
import static org.lwjgl.opengl.GL45.glCreateBuffers;
import static org.lwjgl.opengl.GL45.glNamedBufferStorage;
import static org.lwjgl.system.MemoryUtil.NULL;
/**
* #author SirMathhman
* #version 0.0.0
* #since 9/8/2017
*/
public class HelloTriangle {
private static final int WIDTH = 800;
private static final int HEIGHT = 600;
private long window;
private int vaoID;
public static void main(String[] args) {
new HelloTriangle().run();
}
private void run() {
init();
loop();
}
private void init() {
GLFWErrorCallback.createPrint(System.err).set();
if (!glfwInit()) {
System.out.println("GLFW failed to initialize");
System.exit(-1);
}
glfwDefaultWindowHints();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
window = glfwCreateWindow(WIDTH, HEIGHT, "HelloWindow", NULL, NULL);
if (window == NULL) {
System.out.println("GLFW failed to create window");
glfwTerminate();
System.exit(-1);
}
glfwMakeContextCurrent(window);
glfwShowWindow(window);
float[] vertices = {
-0.9f, -0.9f,
0.85f, -0.9f,
-0.9f, 0.85f,
0.9f, -0.85f,
0.9f, 0.9f,
-0.85f, 0.9f
};
int buffer = glCreateBuffers();
glNamedBufferStorage(buffer, vertices, vertices.length);
vaoID = glGenVertexArrays();
glBindVertexArray(vaoID);
glBindBuffer(GL_ARRAY_BUFFER, buffer);
glVertexAttribPointer(0, 2, GL_FLOAT, false, 0, 0);
glEnableVertexAttribArray(0);
}
private void loop() {
GL.createCapabilities();
while (!glfwWindowShouldClose(window)) {
glClear(GL_DEPTH_BUFFER_BIT);
glBindVertexArray(vaoID);
glDrawArrays(GL_TRIANGLES, 0, 6);
glfwSwapBuffers(window);
glfwPollEvents();
}
glfwTerminate();
System.exit(0);
}
}
PS: Is there also a way to return a more detailed error thrown by the driver by LWJGL?
glCreateBuffers and glNamedBufferStorage are OpenGL 4.5 commands. But you are requesting 3.3 (the glfwWindowHint commands).
If you want to stick to 3.3 version, try creating a buffer with glGenBuffers
I've made a simple hello world application using JNI everything works good even the dll for my 64 bit gets created but when i run the app it shows the following error :
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000180116d47, pid=2140, tid=0x0000000000001710
#
# 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:
# C [cygwin1.dll+0xd6d47]
#
# 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.
#
Here is the complete error report :
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000180116d47, pid=2140, tid=0x0000000000001710
#
# 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:
# C [cygwin1.dll+0xd6d47]
#
# 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.
#
--------------- T H R E A D ---------------
Current thread (0x0000000002bd0800): JavaThread "main" [_thread_in_native, id=5904, stack(0x0000000002a10000,0x0000000002b10000)]
siginfo: ExceptionCode=0xc0000005, writing address 0x0000000000000070
Registers:
RAX=0x0000000000000070, RBX=0x0000000017270278, RCX=0x00000004344a3030, RDX=0x0000000002b0f4f8
RSP=0x0000000002b0f430, RBP=0x0000000002b0f460, RSI=0x0000000020000021, RDI=0x00000000ffffffff
R8 =0x0000000000000004, R9 =0x0000000001217f70, R10=0x0000000002b10000, R11=0x00000004344a10ac
R12=0x0000000000000000, R13=0x0000000017270278, R14=0x0000000002b0f4f8, R15=0x0000000002bd0800
RIP=0x0000000180116d47, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x0000000002b0f430)
0x0000000002b0f430: 000000018018c780 0000000180116d5b
0x0000000002b0f440: 0000000002b0f700 0000000002bd0800
0x0000000002b0f450: 0000000017270278 0000000020000021
0x0000000002b0f460: 0000000002b0f4d8 0000000002ce7f74
0x0000000002b0f470: 0000000002bd09f8 0000000002b0f4f8
0x0000000002b0f480: 0000000020000021 0000000002bd0800
0x0000000002b0f490: 0000000002ce7ca2 0000000002b0f498
0x0000000002b0f4a0: 0000000017270278 0000000002b0f4f8
0x0000000002b0f4b0: 0000000017270410 0000000000000000
0x0000000002b0f4c0: 0000000017270278 0000000000000000
0x0000000002b0f4d0: 0000000002b0f4f8 0000000002b0f540
0x0000000002b0f4e0: 0000000002cd835d 0000000000000000
0x0000000002b0f4f0: 0000000002ce19d8 00000000d5e6e2f0
0x0000000002b0f500: 0000000002b0f500 0000000017270317
0x0000000002b0f510: 0000000002b0f550 0000000017270410
0x0000000002b0f520: 0000000000000000 0000000017270320
Instructions: (pc=0x0000000180116d47)
0x0000000180116d27: 04 f3 90 eb e3 48 c7 c0 08 00 00 00 49 0f c1 82
0x0000000180116d37: 50 e4 ff ff 4c 8d 1d 19 00 00 00 4c 87 5c 24 08
0x0000000180116d47: 4c 89 18 41 ff 82 44 e4 ff ff 41 ff 8a 4c e4 ff
0x0000000180116d57: ff 58 ff e0 65 4c 8b 14 25 08 00 00 00 41 bb 01
Register to memory mapping:
RAX=0x0000000000000070 is an unknown value
RBX={method} {0x0000000017270280} 'print' '()V' in 'javatoc'
RCX=0x00000004344a3030 is an unknown value
RDX=0x0000000002b0f4f8 is pointing into the stack for thread: 0x0000000002bd0800
RSP=0x0000000002b0f430 is pointing into the stack for thread: 0x0000000002bd0800
RBP=0x0000000002b0f460 is pointing into the stack for thread: 0x0000000002bd0800
RSI=0x0000000020000021 is an unknown value
RDI=0x00000000ffffffff is an unallocated location in the heap
R8 =0x0000000000000004 is an unknown value
R9 =0x0000000001217f70 is an unknown value
R10=0x0000000002b10000 is pointing into the stack for thread: 0x0000000002bd0800
R11=0x00000004344a10ac is an unknown value
R12=0x0000000000000000 is an unknown value
R13={method} {0x0000000017270280} 'print' '()V' in 'javatoc'
R14=0x0000000002b0f4f8 is pointing into the stack for thread: 0x0000000002bd0800
R15=0x0000000002bd0800 is a thread
Stack: [0x0000000002a10000,0x0000000002b10000], sp=0x0000000002b0f430, free space=1021k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [cygwin1.dll+0xd6d47]
C [cygwin1.dll+0x14c77f]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j javatoc.print()V+0
j javatoc.main([Ljava/lang/String;)V+7
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000019428800 JavaThread "Service Thread" daemon [_thread_blocked, id=1096, stack(0x0000000019800000,0x0000000019900000)]
0x000000001781f000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=4500, stack(0x0000000019300000,0x0000000019400000)]
0x000000001781a000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=5164, stack(0x0000000019200000,0x0000000019300000)]
0x0000000017816800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3924, stack(0x0000000019100000,0x0000000019200000)]
0x0000000017815000 JavaThread "Attach Listener" daemon [_thread_blocked, id=1188, stack(0x0000000019000000,0x0000000019100000)]
0x0000000017812000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3188, stack(0x0000000018f00000,0x0000000019000000)]
0x0000000002cca800 JavaThread "Finalizer" daemon [_thread_blocked, id=3732, stack(0x0000000018a60000,0x0000000018b60000)]
0x0000000002cbf800 JavaThread "Reference Handler" daemon [_thread_blocked, id=192, stack(0x0000000018960000,0x0000000018a60000)]
=>0x0000000002bd0800 JavaThread "main" [_thread_in_native, id=5904, stack(0x0000000002a10000,0x0000000002b10000)]
Other Threads:
0x00000000177d8000 VMThread [stack: 0x0000000018860000,0x0000000018960000] [id=5348]
0x0000000019452800 WatcherThread [stack: 0x0000000019900000,0x0000000019a00000] [id=5728]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 38400K, used 1331K [0x00000000d5e00000, 0x00000000d8880000, 0x0000000100000000)
eden space 33280K, 4% used [0x00000000d5e00000,0x00000000d5f4cce8,0x00000000d7e80000)
from space 5120K, 0% used [0x00000000d8380000,0x00000000d8380000,0x00000000d8880000)
to space 5120K, 0% used [0x00000000d7e80000,0x00000000d7e80000,0x00000000d8380000)
ParOldGen total 87552K, used 0K [0x0000000081a00000, 0x0000000086f80000, 0x00000000d5e00000)
object space 87552K, 0% used [0x0000000081a00000,0x0000000081a00000,0x0000000086f80000)
Metaspace used 2598K, capacity 4486K, committed 4864K, reserved 1056768K
class space used 283K, capacity 386K, committed 512K, reserved 1048576K
Card table byte_map: [0x0000000012090000,0x0000000012490000] byte_map_base: 0x0000000011c83000
Marking Bits: (ParMarkBitMap*) 0x0000000060a0c720
Begin Bits: [0x0000000012b40000, 0x0000000014ad8000)
End Bits: [0x0000000014ad8000, 0x0000000016a70000)
Polling page: 0x0000000001040000
CodeCache: size=245760Kb used=1106Kb max_used=1115Kb free=244653Kb
bounds [0x0000000002cd0000, 0x0000000002f40000, 0x0000000011cd0000]
total_blobs=257 nmethods=26 adapters=145
compilation: enabled
Compilation events (10 events):
Event: 0.059 Thread 0x000000001781f000 21 3 java.io.WinNTFileSystem::isSlash (18 bytes)
Event: 0.059 Thread 0x000000001781f000 nmethod 21 0x0000000002de2910 code [0x0000000002de2a60, 0x0000000002de2c50]
Event: 0.059 Thread 0x000000001781f000 23 3 java.lang.AbstractStringBuilder::append (50 bytes)
Event: 0.059 Thread 0x000000001781a000 24 4 java.lang.String::charAt (29 bytes)
Event: 0.060 Thread 0x000000001781f000 nmethod 23 0x0000000002de2cd0 code [0x0000000002de2ea0, 0x0000000002de35f8]
Event: 0.060 Thread 0x000000001781f000 25 3 java.lang.String::indexOf (7 bytes)
Event: 0.060 Thread 0x000000001781f000 nmethod 25 0x0000000002de3910 code [0x0000000002de3a80, 0x0000000002de3c88]
Event: 0.060 Thread 0x000000001781a000 nmethod 24 0x0000000002de69d0 code [0x0000000002de6b20, 0x0000000002de6bd8]
Event: 0.063 Thread 0x000000001781f000 26 3 java.lang.StringBuilder::append (8 bytes)
Event: 0.063 Thread 0x000000001781f000 nmethod 26 0x0000000002de5e50 code [0x0000000002de5fc0, 0x0000000002de6148]
GC Heap History (0 events):
No events
Deoptimization events (0 events):
No events
Internal exceptions (2 events):
Event: 0.023 Thread 0x0000000002bd0800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000d5e07ca8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\
Event: 0.023 Thread 0x0000000002bd0800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000d5e07f90) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\prims
Events (10 events):
Event: 0.063 loading class java/security/BasicPermissionCollection
Event: 0.063 loading class java/security/BasicPermissionCollection done
Event: 0.063 loading class sun/launcher/LauncherHelper$FXHelper
Event: 0.063 loading class sun/launcher/LauncherHelper$FXHelper done
Event: 0.063 loading class java/lang/Class$MethodArray
Event: 0.063 loading class java/lang/Class$MethodArray done
Event: 0.064 loading class java/lang/Void
Event: 0.064 loading class java/lang/Void done
Event: 0.064 loading class java/lang/ClassLoaderHelper
Event: 0.064 loading class java/lang/ClassLoaderHelper done
Dynamic libraries:
0x00007ff690580000 - 0x00007ff6905b7000 C:\Program Files\Java\jdk1.8.0_131\bin\java.exe
0x00007ffc37930000 - 0x00007ffc37ada000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffc37230000 - 0x00007ffc3736a000 C:\WINDOWS\system32\KERNEL32.DLL
0x00007ffc350a0000 - 0x00007ffc351af000 C:\WINDOWS\system32\KERNELBASE.dll
0x00007ffc33620000 - 0x00007ffc336a8000 C:\WINDOWS\system32\apphelp.dll
0x00007ffc1cea0000 - 0x00007ffc1ceef000 C:\WINDOWS\AppPatch\AppPatch64\AcGenral.DLL
0x00007ffc35280000 - 0x00007ffc35327000 C:\WINDOWS\system32\msvcrt.dll
0x00007ffc34a70000 - 0x00007ffc34a9b000 C:\WINDOWS\SYSTEM32\SspiCli.dll
0x00007ffc376c0000 - 0x00007ffc37711000 C:\WINDOWS\system32\SHLWAPI.dll
0x00007ffc37540000 - 0x00007ffc376b1000 C:\WINDOWS\system32\USER32.dll
0x00007ffc35a90000 - 0x00007ffc35c08000 C:\WINDOWS\system32\ole32.dll
0x00007ffc35e10000 - 0x00007ffc37227000 C:\WINDOWS\system32\SHELL32.dll
0x00007ffc342b0000 - 0x00007ffc342ce000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffc351b0000 - 0x00007ffc35255000 C:\WINDOWS\system32\ADVAPI32.dll
0x00007ffc2f320000 - 0x00007ffc2f33b000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffc35760000 - 0x00007ffc35896000 C:\WINDOWS\system32\RPCRT4.dll
0x00007ffc35db0000 - 0x00007ffc35e07000 C:\WINDOWS\SYSTEM32\sechost.dll
0x00007ffc35520000 - 0x00007ffc356f6000 C:\WINDOWS\SYSTEM32\combase.dll
0x00007ffc37370000 - 0x00007ffc374b5000 C:\WINDOWS\system32\GDI32.dll
0x00007ffc34ca0000 - 0x00007ffc34cb4000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffc33140000 - 0x00007ffc331df000 C:\WINDOWS\SYSTEM32\SHCORE.dll
0x00007ffc378e0000 - 0x00007ffc37914000 C:\WINDOWS\system32\IMM32.DLL
0x00007ffc35950000 - 0x00007ffc35a89000 C:\WINDOWS\system32\MSCTF.dll
0x00007ffc32350000 - 0x00007ffc325aa000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17031_none_6242a4b3ecbb55a1\COMCTL32.dll
0x0000000060a90000 - 0x0000000060b62000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcr100.dll
0x00000000601f0000 - 0x0000000060a8c000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\server\jvm.dll
0x00007ffc32070000 - 0x00007ffc32079000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffc22da0000 - 0x00007ffc22dbf000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffc2e7c0000 - 0x00007ffc2e7ca000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffc374d0000 - 0x00007ffc374d7000 C:\WINDOWS\system32\PSAPI.DLL
0x00007ffc35700000 - 0x00007ffc35758000 C:\WINDOWS\system32\WS2_32.dll
0x00007ffc22d70000 - 0x00007ffc22d9a000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007ffc35330000 - 0x00007ffc35339000 C:\WINDOWS\system32\NSI.dll
0x00007ffc34d70000 - 0x00007ffc34dba000 C:\WINDOWS\SYSTEM32\cfgmgr32.dll
0x00007ffc33b30000 - 0x00007ffc33b56000 C:\WINDOWS\SYSTEM32\DEVOBJ.dll
0x00000000601e0000 - 0x00000000601ef000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\verify.dll
0x00000000601b0000 - 0x00000000601d9000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\java.dll
0x0000000060190000 - 0x00000000601a6000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\zip.dll
0x00000004344a0000 - 0x00000004344b8000 C:\Program Files\Java\jdk1.8.0_131\bin\javatoc.dll
0x0000000180040000 - 0x0000000180610000 C:\cygwin64\bin\cygwin1.dll
0x00007ffc0b5a0000 - 0x00007ffc0b728000 C:\WINDOWS\SYSTEM32\dbghelp.dll
VM Arguments:
java_command: javatoc
java_class_path (initial): .
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=C:\Program Files\Java\jdk1.8.0_131\bin;
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)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\DTS\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\Tools\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\nodejs\;C:\Program Files\Java\jre7\bin;C:\swigwin-3.0.12;C:\Program Files\Java\jdk1.8.0_131\bin;;C:\Program Files\Java\jdk1.8.0_131\lib;C:\Program Files\Java\jdk1.8.0_131\include\win32;C:\Program Files\Java\jdk1.8.0_131\include;;C:\Python27;;C:\Program Files\Java\jdk1.8.0_131\bin;C:\cygwin64\bin;C:\Users\User\AppData\Roaming\npm;C:\Users\User\AppData\Local\atom\bin
USERNAME=User
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 8.1 , 64 bit Build 9600 (6.3.9600.17056)
CPU:total 4 (initial active 4) (4 cores per cpu, 1 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, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8279416k(5777792k free), swap 9655672k(6364908k 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: Sat May 20 16:25:17 2017
elapsed time: 0 seconds (0d 0h 0m 0s)
I'm using CYGWIN 64 bit version, but unable to get what the exact error is.
Following is the javatoc.java file code
import java.io.*;
public class javatoc
{
public native void print();
static{
System.loadLibrary("javatoc");
}
public static void main(String args[])
{
new javatoc().print();
}
}
Here is the javatoc.c file code
#include "jni.h"
#include <stdio.h>
JNIEXPORT void JNICALL Java_javatoc_print
(JNIEnv *evn, jobject obj)
{
printf("Hello World");
}
Commands used for execution :
javac javatoc.java
javah -jni javatoc
gcc -I"C:/Program Files/Java/jdk1.8.0_131/include" -I"C:/Program Files/Java/jdk1.8.0_131/include/win32" -Wall -D_JNI_IMPLEMENTATION_ -Wl,--kill-at -shared javatoc.c -o javatoc.dll
Can anyone please help me out with this and let me know what this error is about.
I couldn't get JNI to work with Cygwin's g++ -- that induces a dependency on cygwin1.dll, which clashes with the JNI mechanism, causing a crash. But using /bin/x86_64-w64-mingw32-g++.exe fixed the problem for me.
I was following this link how to wrap a c# library for use in java
I think I didn't miss anything but I'm getting a crash.
Here's codes,
Java (project - package - class / jnitest - jni - Test1 )
package jni;
public class Test1 {
static {
System.loadLibrary("Test");
// System.load("/lib/Test.dll");
}
public native void displayHelloWorld();
public static void main (String[] args) {
// System.out.println(System.getProperty("java.library.path"));
Test1 t = new Test1();
t.displayHelloWorld();
}
}
JNI Header file generated from java (using eclipse)
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class jni_Test1 */
#ifndef _Included_jni_Test1
#define _Included_jni_Test1
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: jni_Test1
* Method: displayHelloWorld
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_jni_Test1_displayHelloWorld
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
HelloWorld.h
#using <mscorlib.dll>
#using "CSharpHelloWorld.netmodule"
using namespace System;
public ref class HelloWorldC
{
public:
// Provide .NET interop and garbage collecting to the pointer.
CSharpHelloWorld^ t;
HelloWorldC() {
t = gcnew CSharpHelloWorld();
// Assign the reference a new instance of the object
}
// This inline function is called from the C++ Code
void callCSharpHelloWorld() {
t->displayHelloWorld();
}
};
HelloWorld.cpp
#include <jni.h>
#include "jni_Test1.h"
#include "HelloWorld.h"
// This is the JNI call to the Managed C++ Class
// NOTE: When the java header was created, the package name was not include in the JNI call.
// This naming convention was corrected by adding the
// "helloworld" name following the following syntax:
// Java_<package name>_<class name>_<method name>
JNIEXPORT void JNICALL Java_jni_Test1_displayHelloWorld(JNIEnv *jn, jobject jobj) {
// Instantiate the MC++ class.
HelloWorldC^ t = gcnew HelloWorldC();
// The actual call is made.
t->callCSharpHelloWorld();
}
I'm using Visual Studio 2013 and when I tried to use * like reference link did, it gives me an error so I had to change in that way it doesn't thrown an error. (such as * -> ^, __gc -> gcnew and so on)
I succeeded to create dll file and put it in classpath and when I launched java file, it gives me error/log below
[error]
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (0xe0434352), pid=8020, tid=14744
#
# JRE version: Java(TM) SE Runtime Environment (8.0_31-b13) (build 1.8.0_31-b13)
# Java VM: Java HotSpot(TM) Client VM (25.31-b07 mixed mode windows-x86 )
# Problematic frame:
# C [KERNELBASE.dll+0xc42d]
#
# 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:\workspace\jnitest\hs_err_pid8020.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
[log]
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (0xe0434352), pid=8020, tid=14744
#
# JRE version: Java(TM) SE Runtime Environment (8.0_31-b13) (build 1.8.0_31-b13)
# Java VM: Java HotSpot(TM) Client VM (25.31-b07 mixed mode windows-x86 )
# Problematic frame:
# C [KERNELBASE.dll+0xc42d]
#
# 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.
#
--------------- T H R E A D ---------------
Current thread (0x00ddc800): JavaThread "main" [_thread_in_native, id=14744, stack(0x00f10000,0x00f60000)]
siginfo: ExceptionCode=0xe0434352, ExceptionInformation=0x80070002 0x00000000 0x00000000 0x00000000 0x6e980000
Registers:
EAX=0x00f5e3b0, EBX=0x00000005, ECX=0x00000005, EDX=0x00000000
ESP=0x00f5e3b0, EBP=0x00f5e400, ESI=0x00f5e46c, EDI=0x00000001
EIP=0x76a4c42d, EFLAGS=0x00000212
Top of Stack: (sp=0x00f5e3b0)
0x00f5e3b0: e0434352 00000001 00000000 76a4c42d
0x00f5e3c0: 00000005 80070002 00000000 00000000
0x00f5e3d0: 00000000 6e980000 00f5f578 00000001
0x00f5e3e0: 00000000 006511c4 00004000 00446118
0x00f5e3f0: 00f5e404 758014ad 00412d28 00f5e3b8
0x00f5e400: 00f5e4a0 6ead8fdb e0434352 00000001
0x00f5e410: 00000005 00f5e46c 83662cfd 0043bd10
0x00f5e420: 15a62380 00f5e558 00412d28 00000001
Instructions: (pc=0x76a4c42d)
0x76a4c40d: 02 50 ff 75 14 8d 45 c4 50 e8 57 ad 02 00 83 c4
0x76a4c41d: 0c eb 03 89 45 c0 8d 45 b0 50 ff 15 5c 11 a4 76
0x76a4c42d: c9 c2 10 00 cc cc cc cc cc 8b ff 55 8b ec 56 8b
0x76a4c43d: 75 08 83 fe f4 72 18 83 fe f6 77 13 8d 45 08 50
Register to memory mapping:
EAX=0x00f5e3b0 is pointing into the stack for thread: 0x00ddc800
EBX=0x00000005 is an unknown value
ECX=0x00000005 is an unknown value
EDX=0x00000000 is an unknown value
ESP=0x00f5e3b0 is pointing into the stack for thread: 0x00ddc800
EBP=0x00f5e400 is pointing into the stack for thread: 0x00ddc800
ESI=0x00f5e46c is pointing into the stack for thread: 0x00ddc800
EDI=0x00000001 is an unknown value
Stack: [0x00f10000,0x00f60000], sp=0x00f5e3b0, free space=312k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [KERNELBASE.dll+0xc42d]
C [clr.dll+0x158fdb]
C [clr.dll+0x2cd607]
C [clr.dll+0x2d57bc]
C [clrjit.dll+0x38a6]
C [clrjit.dll+0x2b72c]
C [clrjit.dll+0x3066]
C [clrjit.dll+0x325b]
C [clrjit.dll+0x12fb]
C [clrjit.dll+0x152b]
C [clrjit.dll+0x1668]
C [clrjit.dll+0x17b5]
C [clrjit.dll+0x1802]
C [clr.dll+0x388f9]
C [clr.dll+0x38991]
C [clr.dll+0x389d3]
C [clr.dll+0x38405]
C [clr.dll+0x3878c]
C [clr.dll+0x1497b5]
C [clr.dll+0x1b02b]
C [clr.dll+0x2a0c]
C 0x00f0177f
C 0x0067b3f5
j jni.Test1.displayHelloWorld()V+0
j jni.Test1.main([Ljava/lang/String;)V+9
v ~StubRoutines::call_stub
V [jvm.dll+0x1473e5]
V [jvm.dll+0x20d57e]
V [jvm.dll+0x14747e]
V [jvm.dll+0xd0c27]
V [jvm.dll+0xd91cf]
C [javaw.exe+0x210a]
C [javaw.exe+0xaba1]
C [javaw.exe+0xac2b]
C [kernel32.dll+0x1336a]
C [ntdll.dll+0x39882]
C [ntdll.dll+0x39855]
C 0x00000000
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j jni.Test1.displayHelloWorld()V+0
j jni.Test1.main([Ljava/lang/String;)V+9
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x14ee0000 JavaThread "Service Thread" daemon [_thread_blocked, id=13880, stack(0x15350000,0x153a0000)]
0x14eb6c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2028, stack(0x152d0000,0x15320000)]
0x14eb5800 JavaThread "Attach Listener" daemon [_thread_blocked, id=9236, stack(0x15230000,0x15280000)]
0x14eb2800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14804, stack(0x150b0000,0x15100000)]
0x14e80c00 JavaThread "Finalizer" daemon [_thread_blocked, id=14892, stack(0x04910000,0x04960000)]
0x14e7b400 JavaThread "Reference Handler" daemon [_thread_blocked, id=13668, stack(0x002f0000,0x00340000)]
=>0x00ddc800 JavaThread "main" [_thread_in_native, id=14744, stack(0x00f10000,0x00f60000)]
Other Threads:
0x14e78000 VMThread [stack: 0x01090000,0x010e0000] [id=13428]
0x14ee1400 WatcherThread [stack: 0x00920000,0x00970000] [id=13024]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
def new generation total 4928K, used 795K [0x04a00000, 0x04f50000, 0x09f50000)
eden space 4416K, 18% used [0x04a00000, 0x04ac6ea8, 0x04e50000)
from space 512K, 0% used [0x04e50000, 0x04e50000, 0x04ed0000)
to space 512K, 0% used [0x04ed0000, 0x04ed0000, 0x04f50000)
tenured generation total 10944K, used 0K [0x09f50000, 0x0aa00000, 0x14a00000)
the space 10944K, 0% used [0x09f50000, 0x09f50000, 0x09f50200, 0x0aa00000)
Metaspace used 1695K, capacity 2242K, committed 2368K, reserved 4480K
Card table byte_map: [0x00f60000,0x00ff0000] byte_map_base: 0x00f3b000
Polling page: 0x000e0000
CodeCache: size=32768Kb used=677Kb max_used=677Kb free=32090Kb
bounds [0x02830000, 0x028e0000, 0x04830000]
total_blobs=156 nmethods=19 adapters=70
compilation: enabled
Compilation events (10 events):
Event: 0.135 Thread 0x14eb6c00 15 java.lang.CharacterDataLatin1::getProperties (11 bytes)
Event: 0.135 Thread 0x14eb6c00 nmethod 15 0x028d7808 code [0x028d7900, 0x028d79a0]
Event: 0.135 Thread 0x14eb6c00 16 java.lang.String::toLowerCase (439 bytes)
Event: 0.136 Thread 0x14eb6c00 nmethod 16 0x028d7a48 code [0x028d7c50, 0x028d8440]
Event: 0.136 Thread 0x14eb6c00 17 java.lang.AbstractStringBuilder::append (29 bytes)
Event: 0.137 Thread 0x14eb6c00 nmethod 17 0x028d8e88 code [0x028d8f90, 0x028d907c]
Event: 0.137 Thread 0x14eb6c00 18 java.lang.Character::toLowerCase (9 bytes)
Event: 0.137 Thread 0x14eb6c00 nmethod 18 0x028d9188 code [0x028d9290, 0x028d9338]
Event: 0.137 Thread 0x14eb6c00 19 java.lang.CharacterDataLatin1::toLowerCase (39 bytes)
Event: 0.137 Thread 0x14eb6c00 nmethod 19 0x028d93c8 code [0x028d94c0, 0x028d95a0]
GC Heap History (0 events):
No events
Deoptimization events (0 events):
No events
Internal exceptions (3 events):
Event: 0.091 Thread 0x00ddc800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x04a0b310) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u31\2394\hotspot\src\share\vVG½±¡4·?
Event: 0.091 Thread 0x00ddc800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x04a0b590) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u31\2394\hotspot\src\share\vm\prims\jni.cpp, l>x\b#vÁ?
Event: 0.136 Thread 0x00ddc800 Exception <a 'java/security/PrivilegedActionException'> (0x04abd8e8) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u31\2394\hotspot\src\share\vm\prims\jvm.cpp, line 1312]
Events (10 events):
Event: 0.139 loading class java/security/AllPermission
Event: 0.139 loading class java/security/AllPermission done
Event: 0.139 loading class java/security/UnresolvedPermission
Event: 0.139 loading class java/security/UnresolvedPermission done
Event: 0.139 loading class java/security/BasicPermissionCollection
Event: 0.139 loading class java/security/BasicPermissionCollection done
Event: 0.140 loading class sun/launcher/LauncherHelper$FXHelper
Event: 0.140 loading class sun/launcher/LauncherHelper$FXHelper done
Event: 0.140 loading class java/lang/Class$MethodArray
Event: 0.140 loading class java/lang/Class$MethodArray done
Dynamic libraries:
0x01130000 - 0x01160000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\javaw.exe
0x776a0000 - 0x77820000 C:\Windows\SysWOW64\ntdll.dll
0x757f0000 - 0x75900000 C:\Windows\syswow64\kernel32.dll
0x76a40000 - 0x76a87000 C:\Windows\syswow64\KERNELBASE.dll
0x771f0000 - 0x77291000 C:\Windows\syswow64\ADVAPI32.dll
0x76790000 - 0x7683c000 C:\Windows\syswow64\msvcrt.dll
0x76750000 - 0x76769000 C:\Windows\SysWOW64\sechost.dll
0x75990000 - 0x75a80000 C:\Windows\syswow64\RPCRT4.dll
0x75010000 - 0x75070000 C:\Windows\syswow64\SspiCli.dll
0x75000000 - 0x7500c000 C:\Windows\syswow64\CRYPTBASE.dll
0x756f0000 - 0x757f0000 C:\Windows\syswow64\USER32.dll
0x769b0000 - 0x76a40000 C:\Windows\syswow64\GDI32.dll
0x76780000 - 0x7678a000 C:\Windows\syswow64\LPK.dll
0x75540000 - 0x755dd000 C:\Windows\syswow64\USP10.dll
0x71420000 - 0x715be000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_41e855142bd5705d\COMCTL32.dll
0x76d70000 - 0x76dc7000 C:\Windows\syswow64\SHLWAPI.dll
0x75690000 - 0x756f0000 C:\Windows\system32\IMM32.DLL
0x77120000 - 0x771ec000 C:\Windows\syswow64\MSCTF.dll
0x779e0000 - 0x77a9f000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\msvcr100.dll
0x530a0000 - 0x53444000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\client\jvm.dll
0x74f40000 - 0x74f47000 C:\Windows\system32\WSOCK32.dll
0x75250000 - 0x75285000 C:\Windows\syswow64\WS2_32.dll
0x75670000 - 0x75676000 C:\Windows\syswow64\NSI.dll
0x6ccf0000 - 0x6cd22000 C:\Windows\system32\WINMM.dll
0x75500000 - 0x75505000 C:\Windows\syswow64\PSAPI.DLL
0x74020000 - 0x7402c000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\verify.dll
0x73ff0000 - 0x74011000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\java.dll
0x73fd0000 - 0x73fe3000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\zip.dll
0x75ad0000 - 0x7671b000 C:\Windows\syswow64\SHELL32.dll
0x76fc0000 - 0x7711c000 C:\Windows\syswow64\ole32.dll
0x77670000 - 0x7767b000 C:\Windows\syswow64\profapi.dll
0x77840000 - 0x77850000 C:\Program Files (x86)\Java\jre1.8.0_31\bin\Test.dll
0x6fb00000 - 0x6fb4a000 C:\Windows\SYSTEM32\MSCOREE.DLL
0x15590000 - 0x1574f000 C:\Windows\system32\MSVCR120D.dll
0x6f9f0000 - 0x6fa6e000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
0x6e980000 - 0x6f01d000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
0x6f750000 - 0x6f827000 C:\Windows\system32\MSVCR120_CLR0400.dll
0x6d910000 - 0x6e97b000 C:\Windows\assembly\NativeImages_v4.0.30319_32\mscorlib\d1265d6159ea876f9d63ea4c1361b587\mscorlib.ni.dll
0x6f6d0000 - 0x6f74d000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\clrjit.dll
0x76cd0000 - 0x76d5f000 C:\Windows\syswow64\OLEAUT32.dll
0x5dea0000 - 0x5df71000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll
0x6cf70000 - 0x6d90d000 C:\Windows\assembly\NativeImages_v4.0.30319_32\System\d18e2115a3270f89663fce831547f534\System.ni.dll
0x72040000 - 0x7212b000 C:\Windows\system32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=Cp1252
java_command: jni.Test1
java_class_path (initial): C:\workspace\jnitest\bin
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_51
PATH=C:/Program Files (x86)/Java/jre1.8.0_31/bin/client;C:/Program Files (x86)/Java/jre1.8.0_31/bin;C:/Program Files (x86)/Java/jre1.8.0_31/lib/i386;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Wizvera\Delfino;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Common Files\Ulead Systems\MPEG;C:\SWTOOLS\ReadyApps;C:\Program Files (x86)\Common Files\Lenovo;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Lenovo\Access Connections\;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x64;C:\Program Files (x86)\Java\jre7\bin;C:\Program Files\nodejs\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\Java\jdk1.7.0_51\bin;C:\development\adt-bundle-windows-x86_64\sdk\platform-tools;C:\development\adt-bundle-windows-x86_64\sdk\tools;C:\Program Files\ANT\apache-ant-1.9.3\bin;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\eclipse\mars;
USERNAME=MYUSER
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
CPU:total 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 8079004k(1694656k free), swap 16156168k(9124340k free)
vm_info: Java HotSpot(TM) Client VM (25.31-b07) for windows-x86 JRE (1.8.0_31-b13), built on Dec 17 2014 20:46:12 by "java_re" with MS VC++ 10.0 (VS2010)
time: Thu Aug 27 16:38:52 2015
elapsed time: 0 seconds (0d 0h 0m 0s)
Short version:
Opening/reading mp4 files with Xuggler sometimes does not work properly but causes program to crash.
Long version:
In my program i read, modify and write video files. It works fine with most formats i tested (avi, flv, mpg, mkv).
The Xuggler functions i use are mostly:
//Example 1
IContainer container = IContainer.make();
int result = container.open(filename, IContainer.Type.READ, null);
and
//Example 2
IMediaReader filmReader = ToolFactory.makeReader(filename);
filmReader.readPacket();
filmReader.close();
Working on mp4 file is lottery. Some files work mostly fine. Some files work with the Example 1 but not with Example 2 or vice versa. With some files program runs if it's Debug mode and with some it does not run in debug mode.
The effect i usually get is an error (look at the bottom of post).
The answer i'm looking for is why this happens and more importantly is it possible to fix?
Problem is especially hard for me to investigate because it seems semi random. It may behave differently in debug mode, sometimes even the time i wait in debug mode before pressing continue may cause program to run properly or crash.
Adding seemingly unrelated code may cause program to stop working with some files. For example:
Adding line:
IContainer container1 = IContainer.make();
Before program:
IMediaReader filmReader = ToolFactory.makeReader(filename);
filmReader.readPacket();
filmReader.close();
IContainer container = IContainer.make();
int result = container.open(filename, IContainer.Type.READ, null);
System.out.println(result);
Cause crashes with files that worked properly before.
The error:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006ee76520, pid=4448, tid=7192
#
# JRE version: Java(TM) SE Runtime Environment (8.0_40-b26) (build 1.8.0_40-b26)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.40-b25 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [xuggle6554930242940580036.dll+0x736520]
#
# 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:\Michal\Java Workspace\TestMP4\hs_err_pid4448.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
The log:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006ee76520, pid=1164, tid=8360
#
# JRE version: Java(TM) SE Runtime Environment (8.0_40-b26) (build 1.8.0_40-b26)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.40-b25 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [xuggle7482689414368935779.dll+0x736520]
#
# 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.
#
--------------- T H R E A D ---------------
Current thread (0x00000000021fe800): JavaThread "main" [_thread_in_native, id=8360, stack(0x0000000002200000,0x0000000002300000)]
siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff
Registers:
RAX=0x00000000003e1130, RBX=0x0000000058fc0120, RCX=0x00000000003e1130, RDX=0x0000000000000009
RSP=0x00000000022fdd60, RBP=0x00000000003e0870, RSI=0x00000000003e2130, RDI=0x0000000000000004
R8 =0x000000006ee77580, R9 =0x000000006ee76490, R10=0x000000005902e880, R11=0x00000000003d16a0
R12=0x00000000003d1ea0, R13=0x0000000000000004, R14=0x0000000000000184, R15=0x000000006fab8f20
RIP=0x000000006ee76520, EFLAGS=0x0000000000010202
Top of Stack: (sp=0x00000000022fdd60)
0x00000000022fdd60: 000000006ee76665 000000006ee774c5
0x00000000022fdd70: 000000006ee77505 000000006ee77545
0x00000000022fdd80: 000000006ee77585 000000006ee79426
0x00000000022fdd90: 000000006fab8f20 00000000003e1130
0x00000000022fdda0: 0000000058fc25e0 0000000002650006
0x00000000022fddb0: 3fe0000000000000 0000000000000000
0x00000000022fddc0: 40c7760000000000 0000000000000000
0x00000000022fddd0: 3fe0000000000000 0000000000000000
0x00000000022fdde0: 0000000058fc35e0 000000006ea45d24
0x00000000022fddf0: 3f40624dd2f1a9fc 0000000000000000
0x00000000022fde00: 0000000000000000 0000000000000000
0x00000000022fde10: 0000000000000000 0000000000000000
0x00000000022fde20: 0000000058fcc4e0 000000006fab7320
0x00000000022fde30: 0000000055dbdc5d 0000000058fc0080
0x00000000022fde40: 0000000000000000 00000000003e0870
0x00000000022fde50: 00000000003e0870 0000000000000000
Instructions: (pc=0x000000006ee76520)
0x000000006ee76500: c4 e3 5d 0c c0 55 c5 e4 5c c8 c5 e4 58 c0 c5 fc
0x000000006ee76510: 29 01 c5 fc 29 49 20 c3 0f 1f 84 00 00 00 00 00
0x000000006ee76520: c5 fc 28 51 40 c5 fc 28 59 60 c5 ec 5c fb c5 ec
0x000000006ee76530: 58 d3 c5 c4 57 3d 26 41 84 00 c5 ec c6 df be c5
Register to memory mapping:
RAX=0x00000000003e1130 is an unknown value
RBX=0x0000000058fc0120 is an unknown value
RCX=0x00000000003e1130 is an unknown value
RDX=0x0000000000000009 is an unknown value
RSP=0x00000000022fdd60 is pointing into the stack for thread: 0x00000000021fe800
RBP=0x00000000003e0870 is an unknown value
RSI=0x00000000003e2130 is an unknown value
RDI=0x0000000000000004 is an unknown value
R8 =0x000000006ee77580 is an unknown value
R9 =0x000000006ee76490 is an unknown value
R10=0x000000005902e880 is an unknown value
R11=0x00000000003d16a0 is an unknown value
R12=0x00000000003d1ea0 is an unknown value
R13=0x0000000000000004 is an unknown value
R14=0x0000000000000184 is an unknown value
R15=0x000000006fab8f20 is an unknown value
Stack: [0x0000000002200000,0x0000000002300000], sp=0x00000000022fdd60, free space=1015k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [xuggle7482689414368935779.dll+0x736520]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j com.xuggle.xuggler.XugglerJNI.IContainer_open__SWIG_1(JLcom/xuggle/xuggler/IContainer;Ljava/lang/String;IJLcom/xuggle/xuggler/IContainerFormat;ZZ)I+0
j com.xuggle.xuggler.IContainer.open(Ljava/lang/String;Lcom/xuggle/xuggler/IContainer$Type;Lcom/xuggle/xuggler/IContainerFormat;ZZ)I+19
j com.xuggle.mediatool.MediaReader.open()V+20
j com.xuggle.mediatool.MediaReader.readPacket()Lcom/xuggle/xuggler/IError;+8
j testmp4.TestMP4.main([Ljava/lang/String;)V+9
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x000000005631f800 JavaThread "Service Thread" daemon [_thread_blocked, id=5712, stack(0x0000000058560000,0x0000000058660000)]
0x0000000057d41000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=1836, stack(0x0000000058410000,0x0000000058510000)]
0x0000000057d40800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=8572, stack(0x0000000058200000,0x0000000058300000)]
0x0000000056318000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8172, stack(0x0000000057c40000,0x0000000057d40000)]
0x0000000056316800 JavaThread "Attach Listener" daemon [_thread_blocked, id=9060, stack(0x0000000057a00000,0x0000000057b00000)]
0x0000000056313800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7208, stack(0x0000000057830000,0x0000000057930000)]
0x00000000562b7000 JavaThread "Finalizer" daemon [_thread_blocked, id=9876, stack(0x0000000057700000,0x0000000057800000)]
0x00000000562b0000 JavaThread "Reference Handler" daemon [_thread_blocked, id=10068, stack(0x0000000057560000,0x0000000057660000)]
=>0x00000000021fe800 JavaThread "main" [_thread_in_native, id=8360, stack(0x0000000002200000,0x0000000002300000)]
Other Threads:
0x00000000562aa800 VMThread [stack: 0x0000000057370000,0x0000000057470000] [id=5480]
0x0000000057de5800 WatcherThread [stack: 0x00000000586c0000,0x00000000587c0000] [id=8516]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 28672K, used 8878K [0x00000000e0300000, 0x00000000e2300000, 0x0000000100000000)
eden space 24576K, 36% used [0x00000000e0300000,0x00000000e0bab8e8,0x00000000e1b00000)
from space 4096K, 0% used [0x00000000e1f00000,0x00000000e1f00000,0x00000000e2300000)
to space 4096K, 0% used [0x00000000e1b00000,0x00000000e1b00000,0x00000000e1f00000)
ParOldGen total 65536K, used 0K [0x00000000a0800000, 0x00000000a4800000, 0x00000000e0300000)
object space 65536K, 0% used [0x00000000a0800000,0x00000000a0800000,0x00000000a4800000)
Metaspace used 5529K, capacity 5564K, committed 5888K, reserved 1056768K
class space used 645K, capacity 660K, committed 768K, reserved 1048576K
Card table byte_map: [0x0000000011a10000,0x0000000011d10000] byte_map_base: 0x000000001150c000
Marking Bits: (ParMarkBitMap*) 0x0000000059fc4040
Begin Bits: [0x0000000012660000, 0x0000000013e40000)
End Bits: [0x0000000013e40000, 0x0000000015620000)
Polling page: 0x0000000001c80000
CodeCache: size=245760Kb used=1840Kb max_used=1840Kb free=243919Kb
bounds [0x0000000002650000, 0x00000000028c0000, 0x0000000011650000]
total_blobs=690 nmethods=352 adapters=251
compilation: enabled
Compilation events (10 events):
Event: 1.648 Thread 0x0000000057d41000 348 3 java.net.URLClassLoader$1::run (5 bytes)
Event: 1.649 Thread 0x0000000057d41000 nmethod 348 0x000000000281cd50 code [0x000000000281cec0, 0x000000000281d068]
Event: 1.649 Thread 0x0000000057d41000 349 ! 3 java.net.URLClassLoader$1::run (63 bytes)
Event: 1.649 Thread 0x0000000057d41000 nmethod 349 0x000000000281c390 code [0x000000000281c560, 0x000000000281ca88]
Event: 1.649 Thread 0x0000000057d41000 350 s 3 sun.misc.Resource::cachedInputStream (20 bytes)
Event: 1.650 Thread 0x0000000057d41000 nmethod 350 0x000000000281bd90 code [0x000000000281bf00, 0x000000000281c2c8]
Event: 1.652 Thread 0x0000000057d41000 351 s! 3 java.net.URLStreamHandler::getHostAddress (54 bytes)
Event: 1.652 Thread 0x0000000057d41000 nmethod 351 0x000000000281b110 code [0x000000000281b2c0, 0x000000000281ba58]
Event: 1.659 Thread 0x0000000057d41000 352 3 java.lang.ref.WeakReference::<init> (7 bytes)
Event: 1.659 Thread 0x0000000057d41000 nmethod 352 0x000000000281ac10 code [0x000000000281ad80, 0x000000000281b030]
GC Heap History (0 events):
No events
Deoptimization events (0 events):
No events
Internal exceptions (10 events):
Event: 0.081 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0497968) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.081 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0498c08) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.081 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0498dc0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.081 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0499fe8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.081 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e049a1a0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.107 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0578158) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.107 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e0578310) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.108 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e057c238) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.108 Thread 0x00000000021fe800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000e057c3f0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jvm.cpp, line 1382]
Event: 0.135 Thread 0x00000000021fe800 Exception <a 'java/io/FileNotFoundException'> (0x00000000e07157c0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u40\3098\hotspot\src\share\vm\prims\jni.cpp, line 709]
Events (10 events):
Event: 1.654 loading class java/util/concurrent/TimeUnit$6
Event: 1.655 loading class java/util/concurrent/TimeUnit$6 done
Event: 1.655 loading class java/util/concurrent/TimeUnit$7
Event: 1.655 loading class java/util/concurrent/TimeUnit$7 done
Event: 1.658 loading class com/xuggle/xuggler/IContainer$Type
Event: 1.658 loading class com/xuggle/xuggler/IContainer$Type done
Event: 1.659 loading class com/xuggle/xuggler/IContainer$Type$SwigNext
Event: 1.659 loading class com/xuggle/xuggler/IContainer$Type$SwigNext done
Event: 1.659 loading class com/xuggle/xuggler/IContainerFormat
Event: 1.659 loading class com/xuggle/xuggler/IContainerFormat done
Dynamic libraries:
0x000000013fca0000 - 0x000000013fcd7000 C:\Program Files\Java\jdk1.8.0_40\bin\java.exe
0x0000000077190000 - 0x0000000077339000 C:\Windows\SYSTEM32\ntdll.dll
0x0000000076f70000 - 0x000000007708f000 C:\Windows\system32\kernel32.dll
0x000007fefc210000 - 0x000007fefc27c000 C:\Windows\system32\KERNELBASE.dll
0x000007fefce80000 - 0x000007fefcf5b000 C:\Windows\system32\ADVAPI32.dll
0x000007fefc650000 - 0x000007fefc6ef000 C:\Windows\system32\msvcrt.dll
0x000007fefcf60000 - 0x000007fefcf7f000 C:\Windows\SYSTEM32\sechost.dll
0x000007fefd110000 - 0x000007fefd23d000 C:\Windows\system32\RPCRT4.dll
0x0000000077090000 - 0x000000007718a000 C:\Windows\system32\USER32.dll
0x000007fefce10000 - 0x000007fefce77000 C:\Windows\system32\GDI32.dll
0x000007fefca10000 - 0x000007fefca1e000 C:\Windows\system32\LPK.dll
0x000007fefd240000 - 0x000007fefd309000 C:\Windows\system32\USP10.dll
0x000007fefaa50000 - 0x000007fefac44000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
0x000007fefc280000 - 0x000007fefc2f1000 C:\Windows\system32\SHLWAPI.dll
0x000007fefcd40000 - 0x000007fefcd6e000 C:\Windows\system32\IMM32.DLL
0x000007fefca20000 - 0x000007fefcb29000 C:\Windows\system32\MSCTF.dll
0x000007fef3430000 - 0x000007fef34bd000 C:\Program Files (x86)\AVG\AVG2015\avghooka.dll
0x000000005ade0000 - 0x000000005aeb2000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\msvcr100.dll
0x00000000597c0000 - 0x000000005a043000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\server\jvm.dll
0x000007fef5130000 - 0x000007fef5139000 C:\Windows\system32\WSOCK32.dll
0x000007fefc7e0000 - 0x000007fefc82d000 C:\Windows\system32\WS2_32.dll
0x000007fefc6f0000 - 0x000007fefc6f8000 C:\Windows\system32\NSI.dll
0x000007fef9010000 - 0x000007fef904b000 C:\Windows\system32\WINMM.dll
0x000007fefaf40000 - 0x000007fefaf4c000 C:\Windows\system32\VERSION.dll
0x0000000077350000 - 0x0000000077357000 C:\Windows\system32\PSAPI.DLL
0x000000005c230000 - 0x000000005c23f000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\verify.dll
0x000000005c200000 - 0x000000005c229000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\java.dll
0x000000005c1e0000 - 0x000000005c1f6000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\zip.dll
0x000007fefd310000 - 0x000007fefe099000 C:\Windows\system32\SHELL32.dll
0x000007fefcb30000 - 0x000007fefcd33000 C:\Windows\system32\ole32.dll
0x000007fefbed0000 - 0x000007fefbedf000 C:\Windows\system32\profapi.dll
0x000007fefb6c0000 - 0x000007fefb6d8000 C:\Windows\system32\CRYPTSP.dll
0x000007fefb3c0000 - 0x000007fefb407000 C:\Windows\system32\rsaenh.dll
0x000007fefc090000 - 0x000007fefc0ae000 C:\Windows\system32\USERENV.dll
0x000007fefbd20000 - 0x000007fefbd2f000 C:\Windows\system32\CRYPTBASE.dll
0x000000005c1c0000 - 0x000000005c1da000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\net.dll
0x000007fefb660000 - 0x000007fefb6b5000 C:\Windows\system32\mswsock.dll
0x000007fefb650000 - 0x000007fefb657000 C:\Windows\System32\wship6.dll
0x000007fef8730000 - 0x000007fef8757000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fef8780000 - 0x000007fef878b000 C:\Windows\system32\WINNSI.DLL
0x000007fef83c0000 - 0x000007fef83d8000 C:\Windows\system32\dhcpcsvc.DLL
0x000007fef8050000 - 0x000007fef8061000 C:\Windows\system32\dhcpcsvc6.DLL
0x000000005ba80000 - 0x000000005ba91000 C:\Program Files\Java\jdk1.8.0_40\jre\bin\nio.dll
0x000000006e740000 - 0x000000006fda5000 C:\Users\User\AppData\Local\Temp\xuggle\xuggle7482689414368935779.dll
0x000007feefda0000 - 0x000007feefdb7000 C:\Windows\system32\AVICAP32.dll
0x000007feef200000 - 0x000007feef229000 C:\Windows\system32\MSVFW32.dll
0x000007fef63b0000 - 0x000007fef64d5000 C:\Windows\system32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=UTF-8
java_command: testmp4.TestMP4
java_class_path (initial): C:\Michal\Java Workspace\Xuggler\commons-cli-1.2-bin\commons-cli-1.2\commons-cli-1.2.jar;C:\Michal\Java Workspace\Xuggler\xuggle-xuggler-5.4.jar;C:\Michal\Java Workspace\Xuggler\logback-1.1.2\logback-1.1.2\logback-classic-1.1.2.jar;C:\Michal\Java Workspace\Xuggler\logback-1.1.2\logback-1.1.2\logback-core-1.1.2.jar;C:\Michal\Java Workspace\Xuggler\slf4j-1.7.10\slf4j-1.7.10\slf4j-api-1.7.10.jar;C:\Michal\Java Workspace\TestMP4\build\classes
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Michal\Xuggler\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;c:\Program Files (x86)\Intel\iCLS Client\;c:\Program Files\Intel\iCLS Client\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Qt\Qt5.0.0\5.0.0\msvc2010\bin;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Mingw\bin;C:\Qt\4.8.4\bin;C:\Program Files (x86)\QuickTime\QTSystem\
USERNAME=User
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 (6.1.7601.18409)
CPU:total 4 (4 cores per cpu, 1 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, tsc, tscinvbit, tscinv
Memory: 4k page, physical 6253844k(2125080k free), swap 12505832k(7349476k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.40-b25) for windows-amd64 JRE (1.8.0_40-b26), built on Mar 7 2015 13:51:59 by "java_re" with MS VC++ 10.0 (VS2010)
time: Mon Mar 23 20:32:59 2015
elapsed time: 1 seconds (0d 0h 0m 1s)
Or just a popup saying java stopped working with exit code:
Java Result: -1073741819
I'm using jni4net to call a library i made in C# (using visual studio 2013) from Java (Eclipse).
Here is the code of my C# library :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClassLibrary2
{
public class Class1
{
// Simple method that just prints a hard-coded string.
public void Hello()
{
Console.WriteLine("Hello Java, from .NET!");
}
// Parameterized method that accepts a string
public void Repeat(string line)
{
Console.WriteLine(line);
}
public int mult(int n)
{
return n*2;
}
}
}
and here is my java code :
import net.sf.jni4net.Bridge;
import net.sf.jni4net.Ref;
public class jni {
public static void main(String[] args) {
try {
//Bridge.setVerbose(true);
Bridge.init();
Bridge.LoadAndRegisterAssemblyFrom(new File("ClassLibrary2.j4n.dll"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Class1 c = new Class1();
c.Hello();
c.Repeat("pippo");
c.mult(2);
}
}
I'm using "proxygen" script that was included into jni4net packet to wrap mt C# code into Java.
when i call the functions "Hello" and "Repeat" everything works just fine.
I get the correct output, but when calling the function "mult" I get the following error :
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (0xe0434352), pid=6808, tid=7100
#
# JRE version: Java(TM) SE Runtime Environment (8.0_11-b12) (build 1.8.0_11- b12)
# Java VM: Java HotSpot(TM) Client VM (25.11-b03 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [KERNELBASE.dll+0xc42d]
#
# 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:\ws\DLL\jni4net\hs_err_pid6808.log
#
# 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.
#
It also generates a log file, here it is :
--------------- T H R E A D ---------------
Current thread (0x00dcc000): JavaThread "main" [_thread_in_native, id=7100, stack(0x00e60000,0x00eb0000)]
siginfo: ExceptionCode=0xe0434352, ExceptionInformation=0x80131513 0x00000000 0x00000000 0x00000000 0x72450000
Registers:
EAX=0x00eae5ec, EBX=0x00000005, ECX=0x00000005, EDX=0x00000000
ESP=0x00eae5ec, EBP=0x00eae63c, ESI=0x00eae6ac, EDI=0x00000001
EIP=0x7566c42d, EFLAGS=0x00000202
Top of Stack: (sp=0x00eae5ec)
0x00eae5ec: e0434352 00000001 00000000 7566c42d
0x00eae5fc: 00000005 80131513 00000000 00000000
0x00eae60c: 00000000 72450000 00000001 00000000
0x00eae61c: 006d235c 001f0178 00000000 001f0150
0x00eae62c: 72461865 006d235c 00239dc0 00eae5f4
0x00eae63c: 00eae6e0 725a2a42 e0434352 00000001
0x00eae64c: 00000005 00eae6ac d1e7f1fc 1665aae0
0x00eae65c: 002a7da8 00eae798 00239dc0 00000001
Instructions: (pc=0x7566c42d)
0x7566c40d: 02 50 ff 75 14 8d 45 c4 50 e8 57 ad 02 00 83 c4
0x7566c41d: 0c eb 03 89 45 c0 8d 45 b0 50 ff 15 5c 11 66 75
0x7566c42d: c9 c2 10 00 cc cc cc cc cc 8b ff 55 8b ec 56 8b
0x7566c43d: 75 08 83 fe f4 72 18 83 fe f6 77 13 8d 45 08 50
Register to memory mapping:
EAX=0x00eae5ec is pointing into the stack for thread: 0x00dcc000
EBX=0x00000005 is an unknown value
ECX=0x00000005 is an unknown value
EDX=0x00000000 is an unknown value
ESP=0x00eae5ec is pointing into the stack for thread: 0x00dcc000
EBP=0x00eae63c is pointing into the stack for thread: 0x00dcc000
ESI=0x00eae6ac is pointing into the stack for thread: 0x00dcc000
EDI=0x00000001 is an unknown value
Stack: [0x00e60000,0x00eb0000], sp=0x00eae5ec, free space=313k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [KERNELBASE.dll+0xc42d]
C [clr.dll+0x152a42]
C [clr.dll+0x2255ef]
C [clr.dll+0x22de52]
C [clrjit.dll+0x28df]
C [clrjit.dll+0x290b]
C [clrjit.dll+0x1d53]
C [clrjit.dll+0x1f48]
C [clrjit.dll+0x3405]
C [clrjit.dll+0x3635]
C [clrjit.dll+0x3823]
C [clrjit.dll+0x36f6]
C [clrjit.dll+0x385f]
C [clr.dll+0x34710]
C [clr.dll+0x347a9]
C [clr.dll+0x347eb]
C [clr.dll+0x33684]
C [clr.dll+0x33920]
C [clr.dll+0x41e5e]
C [clr.dll+0x150b6]
C [clr.dll+0x4279]
C 0x151d4d03
j classlibrary2.Class1.mult(I)I+0
j jni4net.jni.main([Ljava/lang/String;)V+43
v ~StubRoutines::call_stub
V [jvm.dll+0x142295]
V [jvm.dll+0x2073ae]
V [jvm.dll+0x14232e]
V [jvm.dll+0xce7c7]
V [jvm.dll+0xd6d6f]
C [javaw.exe+0x20d8]
C [javaw.exe+0xab91]
C [javaw.exe+0xac1b]
C [kernel32.dll+0x1338a]
C [ntdll.dll+0x39f72]
C [ntdll.dll+0x39f45]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j classlibrary2.Class1.mult(I)I+0
j jni4net.jni.main([Ljava/lang/String;)V+43
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x15c0ac00 JavaThread "Thread-0" daemon [_thread_in_native, id=5404, stack(0x15ef0000,0x15f40000)]
0x007b9000 JavaThread "Service Thread" daemon [_thread_blocked, id=5452, stack(0x15ad0000,0x15b20000)]
0x00788400 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=7312, stack(0x04700000,0x04750000)]
0x00787400 JavaThread "Attach Listener" daemon [_thread_blocked, id=6992, stack(0x01240000,0x01290000)]
0x00779400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=568, stack(0x15940000,0x15990000)]
0x00776c00 JavaThread "Finalizer" daemon [_thread_blocked, id=4412, stack(0x15390000,0x153e0000)]
0x00771c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=5608, stack(0x151f0000,0x15240000)]
=>0x00dcc000 JavaThread "main" [_thread_in_native, id=7100, stack(0x00e60000,0x00eb0000)]
Other Threads:
0x0076fc00 VMThread [stack: 0x04790000,0x047e0000] [id=5488]
0x007ba800 WatcherThread [stack: 0x15a50000,0x15aa0000] [id=6180]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
def new generation total 4928K, used 3145K [0x04800000, 0x04d50000, 0x09d50000)
eden space 4416K, 71% used [0x04800000, 0x04b12798, 0x04c50000)
from space 512K, 0% used [0x04c50000, 0x04c50000, 0x04cd0000)
to space 512K, 0% used [0x04cd0000, 0x04cd0000, 0x04d50000)
tenured generation total 10944K, used 0K [0x09d50000, 0x0a800000, 0x14800000)
the space 10944K, 0% used [0x09d50000, 0x09d50000, 0x09d50200, 0x0a800000)
Metaspace used 532K, capacity 2664K, committed 2752K, reserved 4480K
Card table byte_map: [0x00ce0000,0x00d70000] byte_map_base: 0x00cbc000
Polling page: 0x000c0000
CodeCache: size=32768Kb used=748Kb max_used=748Kb free=32020Kb
bounds [0x02700000, 0x027c0000, 0x04700000]
total_blobs=203 nmethods=59 adapters=76
compilation: enabled
Compilation events (10 events):
Event: 0.371 Thread 0x00788400 54 java.nio.DirectLongBufferU::ix (10 bytes)
Event: 0.371 Thread 0x00788400 nmethod 54 0x027ba008 code [0x027ba100, 0x027ba190]
Event: 0.382 Thread 0x00788400 56 java.lang.AbstractStringBuilder::expandCapacity (50 bytes)
Event: 0.383 Thread 0x00788400 nmethod 56 0x027ba448 code [0x027ba560, 0x027ba798]
Event: 0.400 Thread 0x00788400 57 java.lang.String::endsWith (17 bytes)
Event: 0.401 Thread 0x00788400 nmethod 57 0x027ba8c8 code [0x027ba9d0, 0x027baa7c]
Event: 0.424 Thread 0x00788400 58 java.lang.String::indexOf (25 bytes)
Event: 0.424 Thread 0x00788400 nmethod 58 0x027bab48 code [0x027bac50, 0x027bad1c]
Event: 0.424 Thread 0x00788400 59 java.util.HashMap::hash (20 bytes)
Event: 0.424 Thread 0x00788400 nmethod 59 0x027bae08 code [0x027baf00, 0x027baf9c]
GC Heap History (0 events):
No events
Deoptimization events (0 events):
No events
Internal exceptions (10 events):
Event: 0.423 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04adeeb0) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.423 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04ae0e20) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.424 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04ae2d68) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.425 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04ae4b50) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.425 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04afceb0) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.426 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04afef48) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.426 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04b00ef0) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.429 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04b03080) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.430 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04b05ee0) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Event: 0.444 Thread 0x00dcc000 Exception <a 'java/security/PrivilegedActionException'> (0x04b099f8) thrown at [D:\re\puppet\workspace\8-2-build-windows-i586-cygwin\jdk8u11\648\hotspot\src\share\vm\prims\jvm.cpp, line 1248]
Events (10 events):
Event: 0.425 loading class system/IFormattable_
Event: 0.425 loading class system/IFormattable_ done
Event: 0.426 loading class system/__IFormattable
Event: 0.426 loading class system/__IFormattable done
Event: 0.429 loading class system/NotSupportedException
Event: 0.429 loading class system/NotSupportedException done
Event: 0.430 loading class system/NullReferenceException
Event: 0.430 loading class system/NullReferenceException done
Event: 0.444 loading class classlibrary2/Class1
Event: 0.444 loading class classlibrary2/Class1 done
Dynamic libraries:
0x012d0000 - 0x01300000 C:\Program Files (x86)\Java\jre8\bin\javaw.exe
0x77710000 - 0x77890000 C:\Windows\SysWOW64\ntdll.dll
0x75fc0000 - 0x760d0000 C:\Windows\syswow64\kernel32.dll
0x75660000 - 0x756a7000 C:\Windows\syswow64\KERNELBASE.dll
0x760d0000 - 0x76170000 C:\Windows\syswow64\ADVAPI32.dll
0x757a0000 - 0x7584c000 C:\Windows\syswow64\msvcrt.dll
0x75770000 - 0x75789000 C:\Windows\SysWOW64\sechost.dll
0x75560000 - 0x75650000 C:\Windows\syswow64\RPCRT4.dll
0x750b0000 - 0x75110000 C:\Windows\syswow64\SspiCli.dll
0x750a0000 - 0x750ac000 C:\Windows\syswow64\CRYPTBASE.dll
0x75440000 - 0x75540000 C:\Windows\syswow64\USER32.dll
0x752a0000 - 0x75330000 C:\Windows\syswow64\GDI32.dll
0x75430000 - 0x7543a000 C:\Windows\syswow64\LPK.dll
0x751a0000 - 0x7523d000 C:\Windows\syswow64\USP10.dll
0x6f920000 - 0x6fabe000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
0x75330000 - 0x75387000 C:\Windows\syswow64\SHLWAPI.dll
0x75c30000 - 0x75c90000 C:\Windows\system32\IMM32.DLL
0x75b60000 - 0x75c2c000 C:\Windows\syswow64\MSCTF.dll
0x52640000 - 0x526ff000 C:\Program Files (x86)\Java\jre8\bin\msvcr100.dll
0x68230000 - 0x685c7000 C:\Program Files (x86)\Java\jre8\bin\client\jvm.dll
0x74d40000 - 0x74d47000 C:\Windows\system32\WSOCK32.dll
0x753f0000 - 0x75425000 C:\Windows\syswow64\WS2_32.dll
0x75540000 - 0x75546000 C:\Windows\syswow64\NSI.dll
0x74cd0000 - 0x74d02000 C:\Windows\system32\WINMM.dll
0x758e0000 - 0x758e5000 C:\Windows\syswow64\PSAPI.DLL
0x6b830000 - 0x6b83c000 C:\Program Files (x86)\Java\jre8\bin\verify.dll
0x68200000 - 0x68221000 C:\Program Files (x86)\Java\jre8\bin\java.dll
0x681e0000 - 0x681f3000 C:\Program Files (x86)\Java\jre8\bin\zip.dll
0x76520000 - 0x7716a000 C:\Windows\syswow64\SHELL32.dll
0x75e60000 - 0x75fbc000 C:\Windows\syswow64\ole32.dll
0x75280000 - 0x7528b000 C:\Windows\syswow64\profapi.dll
0x52de0000 - 0x52dea000 C:\ws\DLL\jni4net\jni4net.n.w32.v40-0.8.8.0.dll
0x74420000 - 0x7446a000 C:\Windows\SYSTEM32\MSCOREE.DLL
0x743a0000 - 0x7441b000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
0x72450000 - 0x72aeb000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
0x72370000 - 0x72443000 C:\Windows\system32\MSVCR110_CLR0400.dll
0x711b0000 - 0x721de000 C:\Windows\assembly\NativeImages_v4.0.30319_32\mscorlib\ce5f61c5754789df97be8dc991c47d07\mscorlib.ni.dll
0x72250000 - 0x72266000 C:\Windows\system32\CRYPTSP.dll
0x72210000 - 0x7224b000 C:\Windows\system32\rsaenh.dll
0x71060000 - 0x710dd000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\clrjit.dll
0x75ad0000 - 0x75b5f000 C:\Windows\syswow64\OLEAUT32.dll
0x763d0000 - 0x7651a000 C:\Windows\syswow64\urlmon.dll
0x75270000 - 0x75274000 C:\Windows\syswow64\api-ms-win-downlevel-ole32-l1-1-0.dll
0x776e0000 - 0x776e4000 C:\Windows\syswow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
0x75720000 - 0x75725000 C:\Windows\syswow64\api-ms-win-downlevel-advapi32-l1-1-0.dll
0x75730000 - 0x75734000 C:\Windows\syswow64\api-ms-win-downlevel-user32-l1-1-0.dll
0x75290000 - 0x75294000 C:\Windows\syswow64\api-ms-win-downlevel-version-l1-1-0.dll
0x74e80000 - 0x74e89000 C:\Windows\system32\version.DLL
0x75650000 - 0x75653000 C:\Windows\syswow64\api-ms-win-downlevel-normaliz-l1-1-0.dll
0x75790000 - 0x75793000 C:\Windows\syswow64\normaliz.DLL
0x76170000 - 0x763a2000 C:\Windows\syswow64\iertutil.dll
0x758f0000 - 0x75ac6000 C:\Windows\syswow64\WININET.dll
0x763b0000 - 0x763c7000 C:\Windows\syswow64\USERENV.dll
0x705f0000 - 0x705f8000 C:\Windows\system32\Secur32.dll
0x6c170000 - 0x6c174000 C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
0x70000000 - 0x70012000 C:\Windows\Microsoft.NET\Framework\v4.0.30319\nlssorting.dll
0x70600000 - 0x70fa4000 C:\Windows\assembly\NativeImages_v4.0.30319_32\System\17a393b77ae757f0768501fb95ff5af6\System.ni.dll
0x70520000 - 0x7052e000 C:\Windows\system32\RpcRtRemote.dll
0x6f820000 - 0x6f90b000 C:\Windows\system32\dbghelp.dll
VM Arguments:
jvm_args: -Dfile.encoding=Cp1252
java_command: jni4net.jni
java_class_path (initial): C:\ws\DLL\jni4net\bin;C:\ws\DLL\jni4net\jni4net.j-0.8.8.0.jar;C:\ws\DLL\jni4net\ClassLibrary2.j4n.jar
Launcher Type: SUN_STANDARD
Environment Variables:
CLASSPATH=.;C:\Program Files (x86)\Java\jre7\lib\ext\QTJava.zip
PATH=C:/Program Files (x86)/Java/jre8/bin/client;C:/Program Files (x86)/Java/jre8/bin;C:/Program Files (x86)/Java/jre8/lib/i386;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CodeBlocks\MinGW\bin;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\ ;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\GitExtensions\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Users\Marco\Desktop\eclipse;
USERNAME=Marco
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit
Memory: 4k page, physical 4072380k(1064400k free), swap 8142896k(4029200k free)
vm_info: Java HotSpot(TM) Client VM (25.11-b03) for windows-x86 JRE (1.8.0_11-b12), built on Jun 16 2014 18:18:58 by "java_re" with MS VC++ 10.0 (VS2010)
time: Wed Feb 04 15:24:40 2015
elapsed time: 0 seconds
The problem is that I can't figure out how to return a value from c# library to Java...
I have also tried to modify the parameter of the function :
public int mult(ref int n)
and then in Java :
Ref<Integer> a = new Ref<Integer>(4);
c.mult(a);
but I seem to get the same error..How can I do?
Thanks in advice, Stefano
Usually this happens is you changed the signature of the method but forgot to re-generate it with proxygen and recompile the proxy dll/jar.
If that doesn't help, please post the generated code as well.