comparison src/share/vm/runtime/arguments_ext.hpp @ 23286:dd9cc155639c

Merge with jdk8u66-b17
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 07 Jan 2016 17:28:46 +0100
parents 1f60a119863a
children
comparison
equal deleted inserted replaced
22786:ac649db7fec4 23286:dd9cc155639c
28 #include "memory/allocation.hpp" 28 #include "memory/allocation.hpp"
29 #include "runtime/arguments.hpp" 29 #include "runtime/arguments.hpp"
30 30
31 class ArgumentsExt: AllStatic { 31 class ArgumentsExt: AllStatic {
32 public: 32 public:
33 static inline void select_gc_ergonomically();
34 static inline void set_gc_specific_flags(); 33 static inline void set_gc_specific_flags();
35 static inline bool check_gc_consistency_ergo();
36 static void process_options(const JavaVMInitArgs* args) {} 34 static void process_options(const JavaVMInitArgs* args) {}
37 }; 35 };
38
39 void ArgumentsExt::select_gc_ergonomically() {
40 Arguments::select_gc_ergonomically();
41 }
42 36
43 void ArgumentsExt::set_gc_specific_flags() { 37 void ArgumentsExt::set_gc_specific_flags() {
44 Arguments::set_gc_specific_flags(); 38 Arguments::set_gc_specific_flags();
45 } 39 }
46 40
47 bool ArgumentsExt::check_gc_consistency_ergo() {
48 return Arguments::check_gc_consistency_ergo();
49 }
50
51 #endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP 41 #endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP