comparison src/share/vm/memory/universe.cpp @ 6867:bdb5f8c9978b

7199068: NPG: SharedSkipVerify is meaningless Summary: Remove the SharedSkipVerify flag Reviewed-by: kamg, sspitsyn, coleenp Contributed-by: harold.seigel@oracle.com
author coleenp
date Wed, 10 Oct 2012 17:04:33 -0400
parents d8ce2825b193
children e52361627b65
comparison
equal deleted inserted replaced
6842:b9a9ed0f8eeb 6867:bdb5f8c9978b
1241 } 1241 }
1242 st->print_cr("}"); 1242 st->print_cr("}");
1243 } 1243 }
1244 1244
1245 void Universe::verify(bool silent, VerifyOption option) { 1245 void Universe::verify(bool silent, VerifyOption option) {
1246 if (SharedSkipVerify) {
1247 return;
1248 }
1249
1250 // The use of _verify_in_progress is a temporary work around for 1246 // The use of _verify_in_progress is a temporary work around for
1251 // 6320749. Don't bother with a creating a class to set and clear 1247 // 6320749. Don't bother with a creating a class to set and clear
1252 // it since it is only used in this method and the control flow is 1248 // it since it is only used in this method and the control flow is
1253 // straight forward. 1249 // straight forward.
1254 _verify_in_progress = true; 1250 _verify_in_progress = true;