comparison src/share/vm/gc_implementation/g1/concurrentMark.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 4805b9f4779e
children b03260081e9b
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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