< prev index next >

src/hotspot/share/runtime/arguments.cpp

Print this page

        

*** 626,643 **** } else { return true; } } - extern bool lookup_special_flag_ext(const char *flag_name, SpecialFlag& flag); - static bool lookup_special_flag(const char *flag_name, SpecialFlag& flag) { - // Allow extensions to have priority - if (lookup_special_flag_ext(flag_name, flag)) { - return true; - } - for (size_t i = 0; special_jvm_flags[i].name != NULL; i++) { if ((strcmp(special_jvm_flags[i].name, flag_name) == 0)) { flag = special_jvm_flags[i]; return true; } --- 626,636 ----
< prev index next >