blob: 6648620e159f65087fbee02090fecd4e67e1b037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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);
if( !initializeImpl() ) {
throw new RuntimeException("Initialization failure");
}
return alExtProcAddressTable;
} } );
}
public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; }
|