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