src/hotspot/share/utilities/globalCounter.cpp
changeset 51548 35a6956f4243
parent 51511 eb8d5aeabab3
child 52332 d2a3503c72f7
equal deleted inserted replaced
51547:2b004d807187 51548:35a6956f4243
    69   // Do all RCU threads.
    69   // Do all RCU threads.
    70   CounterThreadCheck ctc(gbl_cnt);
    70   CounterThreadCheck ctc(gbl_cnt);
    71   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thread = jtiwh.next(); ) {
    71   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thread = jtiwh.next(); ) {
    72     ctc.do_thread(thread);
    72     ctc.do_thread(thread);
    73   }
    73   }
    74   for (NamedThread::Iterator nti; !nti.end(); nti.step()) {
    74   for (NonJavaThread::Iterator njti; !njti.end(); njti.step()) {
    75     ctc.do_thread(nti.current());
    75     ctc.do_thread(njti.current());
    76   }
    76   }
    77 }
    77 }