Same DLL can be loaded by multiple class loaders.
From "Overview of the JNI Design" :
The virtual machine does not allow a given JNI native library to be loaded by more than one class loader. Attempting to load the same native library by multiple class loaders causes an UnsatisfiedLinkError to be thrown.
Mysaifu JVM does not check this.
Fixed jni_funcs.cpp.
From "Overview of the JNI Design" :
The virtual machine does not allow a given JNI native library to be loaded by more than one class loader. Attempting to load the same native library by multiple class loaders causes an UnsatisfiedLinkError to be thrown.
Mysaifu JVM does not check this.