hotspot/src/share/vm/gc_implementation/g1/concurrentMark.hpp
changeset 7397 5b173b4ca846
parent 6761 f9191297ce83
child 7657 a80e571c3d96
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
       
    25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_HPP
       
    26 #define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_HPP
       
    27 
       
    28 #include "gc_implementation/g1/heapRegion.hpp"
       
    29 #include "utilities/taskqueue.hpp"
       
    30 
    25 class G1CollectedHeap;
    31 class G1CollectedHeap;
    26 class CMTask;
    32 class CMTask;
    27 typedef GenericTaskQueue<oop>            CMTaskQueue;
    33 typedef GenericTaskQueue<oop>            CMTaskQueue;
    28 typedef GenericTaskQueueSet<CMTaskQueue> CMTaskQueueSet;
    34 typedef GenericTaskQueueSet<CMTaskQueue> CMTaskQueueSet;
    29 
    35 
  1118 
  1124 
  1119 #if _MARKING_STATS_
  1125 #if _MARKING_STATS_
  1120   void increase_objs_found_on_bitmap() { ++_objs_found_on_bitmap; }
  1126   void increase_objs_found_on_bitmap() { ++_objs_found_on_bitmap; }
  1121 #endif // _MARKING_STATS_
  1127 #endif // _MARKING_STATS_
  1122 };
  1128 };
       
  1129 
       
  1130 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_HPP