8035423: AIX: Fix os::get_default_process_handle() in os_aix.cpp after 8031968

Reviewed-by: kvn
This commit is contained in:
Volker Simonis 2014-02-20 14:44:33 +01:00
parent a5520f1c94
commit 05eda55e3c

@ -1496,6 +1496,10 @@ void* os::dll_lookup(void* handle, const char* name) {
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);