< prev index next >

hotspot/src/share/vm/runtime/arguments_ext.hpp

Print this page
rev 7124 : 8073944: Simplify ArgumentsExt and remove unneeded functionallity
Reviewed-by: kbarrett, dholmes

*** 28,51 **** #include "memory/allocation.hpp" #include "runtime/arguments.hpp" class ArgumentsExt: AllStatic { public: - static inline void select_gc_ergonomically(); static inline void set_gc_specific_flags(); - static inline bool check_gc_consistency_ergo(); static void process_options(const JavaVMInitArgs* args) {} }; - void ArgumentsExt::select_gc_ergonomically() { - Arguments::select_gc_ergonomically(); - } - void ArgumentsExt::set_gc_specific_flags() { Arguments::set_gc_specific_flags(); } - bool ArgumentsExt::check_gc_consistency_ergo() { - return Arguments::check_gc_consistency_ergo(); - } - #endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP --- 28,41 ----
< prev index next >