< prev index next >

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

Print this page

        

*** 553,562 **** --- 553,563 ---- // In support of multi-threaded concurrent phases YieldingFlexibleWorkGang* _conc_workers; // Performance Counters CollectorCounters* _gc_counters; + CollectorCounters* _cgc_counters; // Initialization Errors bool _completed_initialization; // In support of ExplicitGCInvokesConcurrent
*** 928,937 **** --- 929,939 ---- NOT_PRODUCT(bool is_cms_reachable(HeapWord* addr);) // Performance Counter Support CollectorCounters* counters() { return _gc_counters; } + CollectorCounters* cgc_counters() { return _cgc_counters; } // Timer stuff void startTimer() { assert(!_timer.is_active(), "Error"); _timer.start(); } void stopTimer() { assert( _timer.is_active(), "Error"); _timer.stop(); } void resetTimer() { assert(!_timer.is_active(), "Error"); _timer.reset(); }
< prev index next >