hotspot/src/share/vm/runtime/arguments_ext.hpp
changeset 27244 a2bd9d3112d4
parent 27166 4ce0d93a8287
child 27892 06a143c836ad
equal deleted inserted replaced
27169:59d46464ef22 27244:a2bd9d3112d4
    32 public:
    32 public:
    33   static inline void select_gc_ergonomically();
    33   static inline void select_gc_ergonomically();
    34   static inline bool check_gc_consistency_user();
    34   static inline bool check_gc_consistency_user();
    35   static inline bool check_gc_consistency_ergo();
    35   static inline bool check_gc_consistency_ergo();
    36   static inline bool check_vm_args_consistency();
    36   static inline bool check_vm_args_consistency();
    37   static        void process_options(const JavaVMInitArgs* args) {}
    37   // The argument processing extension. Returns true if there is
       
    38   // no additional parsing needed in Arguments::parse() for the option.
       
    39   // Otherwise returns false.
       
    40   static inline bool process_options(const JavaVMOption *option) { return false; }
    38 };
    41 };
    39 
    42 
    40 void ArgumentsExt::select_gc_ergonomically() {
    43 void ArgumentsExt::select_gc_ergonomically() {
    41   Arguments::select_gc_ergonomically();
    44   Arguments::select_gc_ergonomically();
    42 }
    45 }