# HG changeset patch # User Doug Simon # Date 1442954102 -7200 # Node ID d3930fdd1eb3e9edcca8d585eb5394fc09aa9a2c # Parent bc2d4dac0cd3a247194104abef950534b3b445ca renamed JVMCIRuntime::parse_properties to JVMCIRuntime::init_system_properties diff -r bc2d4dac0cd3 -r d3930fdd1eb3 src/share/vm/jvmci/jvmciRuntime.cpp --- 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", diff -r bc2d4dac0cd3 -r d3930fdd1eb3 src/share/vm/jvmci/jvmciRuntime.hpp --- 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 diff -r bc2d4dac0cd3 -r d3930fdd1eb3 src/share/vm/runtime/arguments.cpp --- 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 }