src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp

Print this page
rev 5685 : 8028128: Add a type safe alternative for working with counter based data
Reviewed-by:

*** 70,79 **** --- 70,80 ---- class STWGCTimer; class G1NewTracer; class G1OldTracer; class EvacuationFailedInfo; class nmethod; + class Ticks; typedef OverflowTaskQueue<StarTask, mtGC> RefToScanQueue; typedef GenericTaskQueueSet<RefToScanQueue, mtGC> RefToScanQueueSet; typedef int RegionIdx_t; // needs to hold [ 0..max_regions() )
*** 744,754 **** unsigned int old_marking_cycles_completed() { return _old_marking_cycles_completed; } ! void register_concurrent_cycle_start(jlong start_time); void register_concurrent_cycle_end(); void trace_heap_after_concurrent_cycle(); G1YCType yc_type(); --- 745,755 ---- unsigned int old_marking_cycles_completed() { return _old_marking_cycles_completed; } ! void register_concurrent_cycle_start(const Ticks& start_time); void register_concurrent_cycle_end(); void trace_heap_after_concurrent_cycle(); G1YCType yc_type();