./src/share/vm/runtime/arguments.hpp

Print this page
rev 1586 : Adding check for proper setting of Stack*Pages parameters during JRE startup.

*** 336,345 **** --- 336,346 ---- static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { return is_bad_option(option, ignore, NULL); } static bool verify_interval(uintx val, uintx min, uintx max, const char* name); + static bool verify_min_value(intx val, intx min, const char* name); static bool verify_percentage(uintx value, const char* name); static void describe_range_error(ArgsRange errcode); static ArgsRange check_memory_size(julong size, julong min_size); static ArgsRange parse_memory_size(const char* s, julong* long_arg, julong min_size);
*** 398,407 **** --- 399,410 ---- static jint parse(const JavaVMInitArgs* args); // Check for consistency in the selection of the garbage collector. static bool check_gc_consistency(); // Check consistecy or otherwise of VM argument settings static bool check_vm_args_consistency(); + // Check stack pages settings + static bool check_stack_pages(); // Used by os_solaris static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized); // return a char* array containing all options static char** jvm_flags_array() { return _jvm_flags_array; }