changeset 22602:d3930fdd1eb3

renamed JVMCIRuntime::parse_properties to JVMCIRuntime::init_system_properties
author Doug Simon <doug.simon@oracle.com>
date Tue, 22 Sep 2015 22:35:02 +0200
parents bc2d4dac0cd3
children 2448e3c0cd98
files src/share/vm/jvmci/jvmciRuntime.cpp src/share/vm/jvmci/jvmciRuntime.hpp src/share/vm/runtime/arguments.cpp
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/jvmci/jvmciRuntime.cpp	Tue Sep 22 22:29:28 2015 +0200
+++ b/src/share/vm/jvmci/jvmciRuntime.cpp	Tue Sep 22 22:35:02 2015 +0200
@@ -903,7 +903,7 @@
   }
 };
 
-void JVMCIRuntime::parse_properties(SystemProperty** plist) {
+void JVMCIRuntime::init_system_properties(SystemProperty** plist) {
   char jvmciDir[JVM_MAXPATHLEN];
   const char* fileSep = os::file_separator();
   jio_snprintf(jvmciDir, sizeof(jvmciDir), "%s%slib%sjvmci",
--- a/src/share/vm/jvmci/jvmciRuntime.hpp	Tue Sep 22 22:29:28 2015 +0200
+++ b/src/share/vm/jvmci/jvmciRuntime.hpp	Tue Sep 22 22:35:02 2015 +0200
@@ -79,7 +79,7 @@
   /**
    * Parses *.properties files in jre/lib/jvmci/ and adds the properties to plist.
    */
-  static void parse_properties(SystemProperty** plist);
+  static void init_system_properties(SystemProperty** plist);
 
   /**
    * Saves the value of the "jvmci.compiler" system property for processing
--- a/src/share/vm/runtime/arguments.cpp	Tue Sep 22 22:29:28 2015 +0200
+++ b/src/share/vm/runtime/arguments.cpp	Tue Sep 22 22:35:02 2015 +0200
@@ -214,7 +214,7 @@
   os::init_system_properties_values();
 
 #if INCLUDE_JVMCI
-  JVMCIRuntime::parse_properties(&_system_properties);
+  JVMCIRuntime::init_system_properties(&_system_properties);
 #endif
 }