comparison src/share/vm/runtime/arguments.cpp @ 22501:d113a94d4fdd

Call JVMCIRuntime::parse_properties in Threads::create_vm
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Mon, 31 Aug 2015 18:17:07 +0200
parents d70fa3eef37d
children 8750eddf726f
comparison
equal deleted inserted replaced
22500:148664eacffa 22501:d113a94d4fdd
210 PropertyList_add(&_system_properties, _java_class_path); 210 PropertyList_add(&_system_properties, _java_class_path);
211 PropertyList_add(&_system_properties, _sun_boot_class_path); 211 PropertyList_add(&_system_properties, _sun_boot_class_path);
212 212
213 // Set OS specific system properties values 213 // Set OS specific system properties values
214 os::init_system_properties_values(); 214 os::init_system_properties_values();
215
216 #if INCLUDE_JVMCI
217 JVMCIRuntime::parse_properties(&_system_properties);
218 #endif
219 } 215 }
220 216
221 217
222 // Update/Initialize System properties after JDK version number is known 218 // Update/Initialize System properties after JDK version number is known
223 void Arguments::init_version_specific_system_properties() { 219 void Arguments::init_version_specific_system_properties() {