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

src/hotspot/share/runtime/arguments.hpp

Print this page

        

*** 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() {_force_init_jvmci_runtime = true; } + 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