diff options
Diffstat (limited to 'make/config/joal-alextabstract-CustomJavaCode.java')
-rw-r--r-- | make/config/joal-alextabstract-CustomJavaCode.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/make/config/joal-alextabstract-CustomJavaCode.java b/make/config/joal-alextabstract-CustomJavaCode.java new file mode 100644 index 0000000..e467fc7 --- /dev/null +++ b/make/config/joal-alextabstract-CustomJavaCode.java @@ -0,0 +1,16 @@ +private static final ALExtProcAddressTable alExtProcAddressTable; + +static { + alExtProcAddressTable = AccessController.doPrivileged(new PrivilegedAction<ALExtProcAddressTable>() { + public ALExtProcAddressTable run() { + final ALExtProcAddressTable alExtProcAddressTable = new ALExtProcAddressTable(); + if(null==alExtProcAddressTable) { + throw new RuntimeException("Couldn't instantiate ALExtProcAddressTable"); + } + alExtProcAddressTable.reset(ALImpl.alDynamicLookupHelper); + return alExtProcAddressTable; + } } ); +} + +public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; } + |