# HG changeset patch # User simonis # Date 1392903873 -3600 # Node ID 312d82487cc840e7ac89e23f88b1621dd7950f29 # Parent 177361c49b26e67d5b392745d2c9d47cc8282ddd 8035423: AIX: Fix os::get_default_process_handle() in os_aix.cpp after 8031968 Reviewed-by: kvn diff -r 177361c49b26 -r 312d82487cc8 hotspot/src/os/aix/vm/os_aix.cpp --- a/hotspot/src/os/aix/vm/os_aix.cpp Thu Feb 20 11:05:12 2014 +0100 +++ b/hotspot/src/os/aix/vm/os_aix.cpp Thu Feb 20 14:44:33 2014 +0100 @@ -1496,6 +1496,10 @@ return res; } +void* os::get_default_process_handle() { + return (void*)::dlopen(NULL, RTLD_LAZY); +} + void os::print_dll_info(outputStream *st) { st->print_cr("Dynamic libraries:"); LoadedLibraries::print(st);