src/hotspot/share/runtime/arguments.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/hotspot/share/runtime/arguments.hpp	Tue Feb 27 08:50:12 2018
--- new/src/hotspot/share/runtime/arguments.hpp	Tue Feb 27 08:50:12 2018

*** 539,548 **** --- 539,551 ---- // Adjusts the arguments after the OS have adjusted the arguments static jint adjust_after_os(); static void set_gc_specific_flags(); #if INCLUDE_JVMCI + static bool _force_init_jvmci_runtime; + static void set_force_init_jvmci_runtime(bool force_init) {_force_init_jvmci_runtime = force_init; } + static bool is_force_init_jvmci_runtime() { return _force_init_jvmci_runtime; } // Check consistency of jvmci vm argument settings. static bool check_jvmci_args_consistency(); static void set_jvmci_specific_flags(); #endif // Check for consistency in the selection of the garbage collector.

src/hotspot/share/runtime/arguments.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File