comparison src/share/vm/runtime/arguments.cpp @ 13008:3b3133d93fb6

8027132: Print deprecation warning message for the flags controlling the CMS foreground collector Reviewed-by: stefank, ehelin, ysr, tschatzl
author brutisso
date Mon, 28 Oct 2013 13:27:57 +0100
parents f7d928a3181c
children 46d7652b223c 78da3894b86f 2b8e28fdf503
comparison
equal deleted inserted replaced
12994:f94a9f0746d8 13008:3b3133d93fb6
1986 } 1986 }
1987 if (FLAG_IS_CMDLINE(DefaultMaxRAMFraction)) { 1987 if (FLAG_IS_CMDLINE(DefaultMaxRAMFraction)) {
1988 warning("DefaultMaxRAMFraction is deprecated and will likely be removed in a future release. " 1988 warning("DefaultMaxRAMFraction is deprecated and will likely be removed in a future release. "
1989 "Use MaxRAMFraction instead."); 1989 "Use MaxRAMFraction instead.");
1990 } 1990 }
1991 if (FLAG_IS_CMDLINE(UseCMSCompactAtFullCollection)) {
1992 warning("UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release.");
1993 }
1994 if (FLAG_IS_CMDLINE(CMSFullGCsBeforeCompaction)) {
1995 warning("CMSFullGCsBeforeCompaction is deprecated and will likely be removed in a future release.");
1996 }
1997 if (FLAG_IS_CMDLINE(UseCMSCollectionPassing)) {
1998 warning("UseCMSCollectionPassing is deprecated and will likely be removed in a future release.");
1999 }
1991 } 2000 }
1992 2001
1993 // Check stack pages settings 2002 // Check stack pages settings
1994 bool Arguments::check_stack_pages() 2003 bool Arguments::check_stack_pages()
1995 { 2004 {