From def691b009132463f8ec8efabd0d72768235dcf5 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 21 Sep 2011 20:52:10 +0200 Subject: Unify JNI Library Loading into JNILibLoaderBase and use it for the gluegen-rt native lib as well - removed redundance - move proper JNLPAppletLauncher custom libloader code into JNILibLoaderBase - prepares for new JAR temp cache .. --- src/java/com/jogamp/common/jvm/JVMUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/java/com/jogamp/common/jvm/JVMUtil.java') diff --git a/src/java/com/jogamp/common/jvm/JVMUtil.java b/src/java/com/jogamp/common/jvm/JVMUtil.java index 8657ae8..9ad9baf 100644 --- a/src/java/com/jogamp/common/jvm/JVMUtil.java +++ b/src/java/com/jogamp/common/jvm/JVMUtil.java @@ -37,7 +37,7 @@ import com.jogamp.common.nio.Buffers; import com.jogamp.common.os.NativeLibrary; import jogamp.common.Debug; -import com.jogamp.gluegen.runtime.NativeLibLoader; +import com.jogamp.gluegen.runtime.GlueGenJNILibLoader; /** * Currently this tool works around the Hotspot race condition bugs: @@ -54,7 +54,7 @@ public class JVMUtil { private static final boolean DEBUG = Debug.debug("JVMUtil"); static { - NativeLibLoader.loadGlueGenRT(); + GlueGenJNILibLoader.loadGlueGenRT(); ByteBuffer buffer = Buffers.newDirectByteBuffer(64); if( ! initialize(buffer) ) { -- cgit v1.2.3