< prev index next >

src/share/vm/gc/cms/concurrentMarkSweepGeneration.inline.hpp

Print this page

        

@@ -379,22 +379,22 @@
       _yield) {
     do_yield_work();
   }
 }
 
-inline void Par_MarkFromRootsClosure::do_yield_check() {
+inline void ParMarkFromRootsClosure::do_yield_check() {
   if (ConcurrentMarkSweepThread::should_yield() &&
       !_collector->foregroundGCIsActive()) {
     do_yield_work();
   }
 }
 
 inline void PushOrMarkClosure::do_yield_check() {
   _parent->do_yield_check();
 }
 
-inline void Par_PushOrMarkClosure::do_yield_check() {
+inline void ParPushOrMarkClosure::do_yield_check() {
   _parent->do_yield_check();
 }
 
 // Return value of "true" indicates that the on-going preclean
 // should be aborted.
< prev index next >