From f6be606b249ff83093d3597a45c6e1fb89e3b51b Mon Sep 17 00:00:00 2001 From: brutisso Date: Fri, 4 Jan 2013 21:33:22 +0100 Subject: [PATCH] 8003822: Deprecate the incremental mode of CMS Reviewed-by: johnc, jwilhelm --- src/share/vm/runtime/arguments.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/share/vm/runtime/arguments.cpp b/src/share/vm/runtime/arguments.cpp index c0c0d12a0..2b5c7af0e 100644 --- a/src/share/vm/runtime/arguments.cpp +++ b/src/share/vm/runtime/arguments.cpp @@ -1790,6 +1790,10 @@ void Arguments::check_deprecated_gcs() { 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"); + } } // Check stack pages settings -- GitLab