src/share/vm/runtime/arguments.cpp

Print this page

        

*** 1816,1836 **** // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't // set up UseSerialGC properly, so that can't be used in the check here. warning("Using the ParNew young collector with the Serial old collector is deprecated " "and will likely be removed in a future release"); } - - if (CMSIncrementalMode) { - warning("Using incremental CMS is deprecated and will likely be removed in a future release"); - } } void Arguments::check_deprecated_gc_flags() { if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) { ! warning("Using MaxGCMinorPauseMillis as minor pause goal is deprecated" "and will likely be removed in future release"); } } // Check stack pages settings bool Arguments::check_stack_pages() { --- 1816,1835 ---- // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't // set up UseSerialGC properly, so that can't be used in the check here. warning("Using the ParNew young collector with the Serial old collector is deprecated " "and will likely be removed in a future release"); } } void Arguments::check_deprecated_gc_flags() { if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) { ! warning("Using MaxGCMinorPauseMillis as minor pause goal for adaptive size policy is deprecated" "and will likely be removed in future release"); } + if (CMSIncrementalMode) { + warning("Using incremental CMS is deprecated and will likely be removed in a future release"); + } } // Check stack pages settings bool Arguments::check_stack_pages() {