summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-03-26 04:02:48 +0200
committerSven Gothel <[email protected]>2012-03-26 04:02:48 +0200
commit1c03dfd6d1939a46018583419956e350e531f4fe (patch)
treea07a1b75e9e1ab3576de1961ff0d01c56ce6ac68 /src/java/com/jogamp/common/util
parent3d527ea538c9e9897f86a0f6bdae0cab44d239c3 (diff)
DynamicLibraryBundle*: Allow DynamicLibraryBundleInfo impl. to designate a thread to load native libraries. (Fix Bug 566)
Due to requirements of native libraries using tls_model("global-dynamic") a thread can be designated to load the 'tool' native libraries. In case the tool lib uses tls_model("global-dynamic"), an implementation shall try to let the early most thread load it. For example, AWT-EDT shall load Mesa8 (Ubuntu-TLS) libGL.so.1
Diffstat (limited to 'src/java/com/jogamp/common/util')
-rw-r--r--src/java/com/jogamp/common/util/RunnableExecutor.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/java/com/jogamp/common/util/RunnableExecutor.java b/src/java/com/jogamp/common/util/RunnableExecutor.java
new file mode 100644
index 0000000..6f18f54
--- /dev/null
+++ b/src/java/com/jogamp/common/util/RunnableExecutor.java
@@ -0,0 +1,23 @@
+package com.jogamp.common.util;
+
+public interface RunnableExecutor {
+ /** {@link RunnableExecutor} implementation simply invoking {@link Runnable#run()},
+ * i.e. on the current thread at the time of calling {@link #invoke(boolean, Runnable)}.
+ */
+ public static final RunnableExecutor currentThreadExecutor = new CurrentThreadExecutor();
+
+ /**
+ * @param wait if true method waits until {@link Runnable#run()} is completed, otherwise don't wait.
+ * @param r the {@link Runnable} to be executed.
+ */
+ void invoke(boolean wait, Runnable r);
+
+ static class CurrentThreadExecutor implements RunnableExecutor {
+ private CurrentThreadExecutor() {}
+
+ @Override
+ public void invoke(boolean wait, Runnable r) {
+ r.run();
+ }
+ }
+}