changeset 14464:3ef193f311ed

8035423: AIX: Fix os::get_default_process_handle() in os_aix.cpp after 8031968 Reviewed-by: kvn
author simonis
date Thu, 20 Feb 2014 14:44:33 +0100
parents 0f19095fd8c1
children 28f281e8de1d
files src/os/aix/vm/os_aix.cpp
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/os/aix/vm/os_aix.cpp	Thu Feb 20 11:05:12 2014 +0100
+++ b/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);