aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/joal-alcabstract-CustomJavaCode.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-26 00:34:45 +0100
committerSven Gothel <[email protected]>2014-01-26 00:34:45 +0100
commit2b5522690722cb3b02a4b2aced6e4bd7b2f82dfe (patch)
tree44310a515a3aa77b55ff61bb4c2d230bf788f6f7 /make/config/joal-alcabstract-CustomJavaCode.java
parent23183ccf782c0252957c8d9cf2b51f70b9815acf (diff)
Build: Move gluegen config files into make/config (cleanup)
Diffstat (limited to 'make/config/joal-alcabstract-CustomJavaCode.java')
-rwxr-xr-xmake/config/joal-alcabstract-CustomJavaCode.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/make/config/joal-alcabstract-CustomJavaCode.java b/make/config/joal-alcabstract-CustomJavaCode.java
new file mode 100755
index 0000000..debadad
--- /dev/null
+++ b/make/config/joal-alcabstract-CustomJavaCode.java
@@ -0,0 +1,16 @@
+private static final ALCProcAddressTable alcProcAddressTable;
+
+static {
+ alcProcAddressTable = AccessController.doPrivileged(new PrivilegedAction<ALCProcAddressTable>() {
+ public ALCProcAddressTable run() {
+ final ALCProcAddressTable alcProcAddressTable = new ALCProcAddressTable();
+ if(null==alcProcAddressTable) {
+ throw new RuntimeException("Couldn't instantiate ALCProcAddressTable");
+ }
+ alcProcAddressTable.reset(ALImpl.alDynamicLookupHelper);
+ return alcProcAddressTable;
+ } } );
+}
+
+public static ALCProcAddressTable getALCProcAddressTable() { return alcProcAddressTable; }
+