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