< prev index next >

src/share/vm/gc/g1/concurrentMark.cpp

Print this page

        

@@ -2656,13 +2656,10 @@
 }
 
 // We take a break if someone is trying to stop the world.
 bool ConcurrentMark::do_yield_check(uint worker_id) {
   if (SuspendibleThreadSet::should_yield()) {
-    if (worker_id == 0) {
-      _g1h->g1_policy()->record_concurrent_pause();
-    }
     SuspendibleThreadSet::yield();
     return true;
   } else {
     return false;
   }
< prev index next >