diff options
author | Sven Gothel <[email protected]> | 2009-06-05 03:15:12 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-06-05 03:15:12 +0000 |
commit | b1be10c6b8e7aded4883060f5f0c3ede8b869c69 (patch) | |
tree | a9eeb9af5292c892c66d268a84d5d038a71db9e7 /src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java | |
parent | 18dce8e4df9eb4e21c5a3d1a0085ed707c018fa6 (diff) |
Adding debug flag to native dynamic linker
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/branches/JOGL_2_SANDBOX@141 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java')
-rwxr-xr-x | src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java b/src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java index 7322ffa..83ebd7a 100755 --- a/src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java +++ b/src/java/com/sun/gluegen/runtime/MacOSXDynamicLinkerImpl.java @@ -26,7 +26,7 @@ public class MacOSXDynamicLinkerImpl implements DynamicLinker // --- Begin CustomJavaCode .cfg declarations - public long openLibraryLocal(String pathname) { + public long openLibraryLocal(String pathname, boolean debug) { // Note we use RTLD_LOCAL visibility to _NOT_ allow this functionality to // be used to pre-resolve dependent libraries of JNI code without // requiring that all references to symbols in those libraries be @@ -37,7 +37,7 @@ public class MacOSXDynamicLinkerImpl implements DynamicLinker return dlopen(pathname, RTLD_LAZY | RTLD_LOCAL); } - public long openLibraryGlobal(String pathname) { + public long openLibraryGlobal(String pathname, boolean debug) { // Note we use RTLD_GLOBAL visibility to allow this functionality to // be used to pre-resolve dependent libraries of JNI code without // requiring that all references to symbols in those libraries be |