blob: 7f18094a7ae9863ce3835204c52bde0f2ebbb59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
private static final ALExtProcAddressTable alExtProcAddressTable;
static {
alExtProcAddressTable = SecurityUtil.doPrivileged(new PrivilegedAction<ALExtProcAddressTable>() {
public ALExtProcAddressTable run() {
final ALExtProcAddressTable alExtProcAddressTable = new ALExtProcAddressTable();
alExtProcAddressTable.reset(ALImpl.alDynamicLookupHelper);
/** Not required nor forced
if( !initializeImpl() ) {
throw new RuntimeException("Initialization failure");
} */
return alExtProcAddressTable;
} } );
}
public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; }
|