comparison src/share/vm/runtime/arguments.cpp @ 7453:c98b676a98b4

8003822: Deprecate the incremental mode of CMS Reviewed-by: johnc, jwilhelm
author brutisso
date Fri, 04 Jan 2013 21:33:22 +0100
parents e0ab18eafbde
children 1f6d10b4cc0c 4c8bf5e55392
comparison
equal deleted inserted replaced
7452:e0ab18eafbde 7453:c98b676a98b4
1787 if (UseParNewGC && !UseConcMarkSweepGC) { 1787 if (UseParNewGC && !UseConcMarkSweepGC) {
1788 // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't 1788 // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't
1789 // set up UseSerialGC properly, so that can't be used in the check here. 1789 // set up UseSerialGC properly, so that can't be used in the check here.
1790 warning("Using the ParNew young collector with the Serial old collector is deprecated " 1790 warning("Using the ParNew young collector with the Serial old collector is deprecated "
1791 "and will likely be removed in a future release"); 1791 "and will likely be removed in a future release");
1792 }
1793
1794 if (CMSIncrementalMode) {
1795 warning("Using incremental CMS is deprecated and will likely be removed in a future release");
1792 } 1796 }
1793 } 1797 }
1794 1798
1795 // Check stack pages settings 1799 // Check stack pages settings
1796 bool Arguments::check_stack_pages() 1800 bool Arguments::check_stack_pages()