src/hotspot/share/runtime/globals.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File webrev Cdiff src/hotspot/share/runtime/globals.cpp

src/hotspot/share/runtime/globals.cpp

Print this page

        

*** 445,456 **** if (is_notproduct() && is_product_build()) { jio_snprintf(buf, buflen, "Error: VM option '%s' is notproduct and is available only in debug version of VM.\n", _name); return Flag::NOTPRODUCT_FLAG_BUT_PRODUCT_BUILD; } ! get_locked_message_ext(buf, buflen); ! return Flag::NONE; } bool Flag::is_writeable() const { return is_manageable() || (is_product() && is_read_write()) || is_writeable_ext(); } --- 445,455 ---- if (is_notproduct() && is_product_build()) { jio_snprintf(buf, buflen, "Error: VM option '%s' is notproduct and is available only in debug version of VM.\n", _name); return Flag::NOTPRODUCT_FLAG_BUT_PRODUCT_BUILD; } ! return get_locked_message_ext(buf, buflen); } bool Flag::is_writeable() const { return is_manageable() || (is_product() && is_read_write()) || is_writeable_ext(); }
src/hotspot/share/runtime/globals.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File