aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-06-20 19:51:57 +0200
committerSven Gothel <[email protected]>2013-06-20 19:51:57 +0200
commit9a0d4c81e8c38f454d7bb5cde433a32194d410fb (patch)
treefda303a3971da242d7dc6e1b136cbebcedf74c2d /src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java
parent2d8e25398e929f553c4524e9c57f083d90ba4e08 (diff)
DynamicLinker*: Proper Override notation
Diffstat (limited to 'src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java')
-rw-r--r--src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java b/src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java
index bebddc4..b0b77ce 100644
--- a/src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java
+++ b/src/java/jogamp/common/os/MacOSXDynamicLinkerImpl.java
@@ -43,7 +43,7 @@ public final class MacOSXDynamicLinkerImpl extends UnixDynamicLinkerImpl {
private static final int RTLD_LOCAL = 0x00004;
private static final int RTLD_GLOBAL = 0x00008;
- // --- Begin CustomJavaCode .cfg declarations
+ @Override
public final long openLibraryLocal(String pathname, boolean debug) throws SecurityException {
// Note we use RTLD_LOCAL visibility to _NOT_ allow this functionality to
// be used to pre-resolve dependent libraries of JNI code without
@@ -56,6 +56,7 @@ public final class MacOSXDynamicLinkerImpl extends UnixDynamicLinkerImpl {
return dlopen(pathname, RTLD_LAZY | RTLD_LOCAL);
}
+ @Override
public final long openLibraryGlobal(String pathname, boolean debug) throws SecurityException {
// Note we use RTLD_GLOBAL visibility to allow this functionality to
// be used to pre-resolve dependent libraries of JNI code without
@@ -68,6 +69,7 @@ public final class MacOSXDynamicLinkerImpl extends UnixDynamicLinkerImpl {
return dlopen(pathname, RTLD_LAZY | RTLD_GLOBAL);
}
+ @Override
public final long lookupSymbolGlobal(String symbolName) {
final long addr = dlsym(RTLD_DEFAULT, symbolName);
if(DEBUG_LOOKUP) {