diff src/share/vm/graal/graalCompilerToVM.cpp @ 13871:0d91d64b88f8

GNFI: set invalid rtld_default in HotSpotVMConfig
author Matthias Grimmer <grimmer@ssw.jku.at>
date Wed, 05 Feb 2014 10:37:07 +0100
parents d04be74665fb
children 4731c1a0b1f3
line wrap: on
line diff
--- a/src/share/vm/graal/graalCompilerToVM.cpp	Wed Feb 05 09:32:30 2014 +0100
+++ b/src/share/vm/graal/graalCompilerToVM.cpp	Wed Feb 05 10:37:07 2014 +0100
@@ -562,11 +562,6 @@
   set_long("functionLookupAddress", (jlong) os::dll_lookup);
   #if defined(TARGET_OS_FAMILY_bsd) || defined(TARGET_OS_FAMILY_linux)
   set_long("rtldDefault", (jlong) RTLD_DEFAULT);
-  #else 
-  // Windows is not supported at the moment. 
-  // On Java-side we do a check on 0xDEADFACE and crash if rtldDefault == 0xDEADFACE. 
-  // Using 0 is not possible as it is a valid value for rtldDefault on some platforms.
-  set_long("rtldDefault", (jlong) 0xDEADFACE);
   #endif
 
 #undef set_boolean