diff options
author | Sven Gothel <[email protected]> | 2010-11-08 03:40:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-08 03:40:24 +0100 |
commit | 2c6ec665b1a755bbb7538a0c20075d5f640d57c9 (patch) | |
tree | ae45b7f8d2476812f582bf9b9e8db87638090df6 /src/java/com | |
parent | 4ab5c25ddfc92b5c4d5f57ddd0c2b6f6c815a731 (diff) |
Changed license (-> BSD) and content (minimum tokens) of dynamic-linker.h
Diffstat (limited to 'src/java/com')
-rwxr-xr-x | src/java/com/jogamp/common/os/UnixDynamicLinkerImpl.java | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/java/com/jogamp/common/os/UnixDynamicLinkerImpl.java b/src/java/com/jogamp/common/os/UnixDynamicLinkerImpl.java index d2970d6..fcfe418 100755 --- a/src/java/com/jogamp/common/os/UnixDynamicLinkerImpl.java +++ b/src/java/com/jogamp/common/os/UnixDynamicLinkerImpl.java @@ -6,16 +6,10 @@ package com.jogamp.common.os; public class UnixDynamicLinkerImpl implements DynamicLinker { public static final long RTLD_DEFAULT = 0; - public static final int RTLD_LAZY = 0x00001; - public static final int RTLD_NOW = 0x00002; - public static final int RTLD_NOLOAD = 0x00004; - public static final int RTLD_GLOBAL = 0x00100; - public static final int RTLD_LOCAL = 0x00000; - public static final int RTLD_PARENT = 0x00200; - public static final int RTLD_GROUP = 0x00400; - public static final int RTLD_WORLD = 0x00800; - public static final int RTLD_NODELETE = 0x01000; - public static final int RTLD_FIRST = 0x02000; + public static final int RTLD_LAZY = 0x00001; + public static final int RTLD_NOW = 0x00002; + public static final int RTLD_GLOBAL = 0x00100; + public static final int RTLD_LOCAL = 0x00000; /** Interface to C language function: <br> <code> int dlclose(void * ); </code> */ private static native int dlclose(long arg0); |