< prev index next >

src/share/vm/runtime/arguments.hpp

Print this page
rev 7103 : 8073944: Simplify ArgumentsExt and remove unneeded functionallity
Reviewed-by:

*** 464,475 **** // Verifies that the given value will fit as a MaxHeapFreeRatio. If not, an error // message is returned in the provided buffer. static bool verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio); // Check for consistency in the selection of the garbage collector. ! static bool check_gc_consistency_user(); // Check user-selected gc ! static inline bool check_gc_consistency_ergo(); // Check ergonomic-selected gc static void check_deprecated_gcs(); static void check_deprecated_gc_flags(); // Check consistecy or otherwise of VM argument settings static bool check_vm_args_consistency(); // Check stack pages settings --- 464,474 ---- // Verifies that the given value will fit as a MaxHeapFreeRatio. If not, an error // message is returned in the provided buffer. static bool verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio); // Check for consistency in the selection of the garbage collector. ! static bool check_gc_consistency(); // Check user-selected gc static void check_deprecated_gcs(); static void check_deprecated_gc_flags(); // Check consistecy or otherwise of VM argument settings static bool check_vm_args_consistency(); // Check stack pages settings
*** 613,622 **** bool Arguments::gc_selected() { return UseConcMarkSweepGC || UseG1GC || UseParallelGC || UseParallelOldGC || UseParNewGC || UseSerialGC; } - bool Arguments::check_gc_consistency_ergo() { - return check_gc_consistency_user(); - } - #endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP --- 612,617 ----
< prev index next >