< prev index next >

src/share/vm/runtime/arguments.hpp

Print this page

        

*** 732,746 **** static void check_unsupported_dumping_properties() NOT_CDS_RETURN; }; // Disable options not supported in this release, with a warning if they // were explicitly requested on the command-line ! #define UNSUPPORTED_OPTION(opt, description) \ do { \ if (opt) { \ if (FLAG_IS_CMDLINE(opt)) { \ ! warning(description " is disabled in this release."); \ } \ FLAG_SET_DEFAULT(opt, false); \ } \ } while(0) --- 732,746 ---- static void check_unsupported_dumping_properties() NOT_CDS_RETURN; }; // Disable options not supported in this release, with a warning if they // were explicitly requested on the command-line ! #define UNSUPPORTED_OPTION(opt) \ do { \ if (opt) { \ if (FLAG_IS_CMDLINE(opt)) { \ ! warning("-XX:+" #opt " not supported in this VM"); \ } \ FLAG_SET_DEFAULT(opt, false); \ } \ } while(0)
< prev index next >