comparison src/share/vm/gc_implementation/concurrentMarkSweep/promotionInfo.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 c18cbe5936b8
children f69a5d43dc19
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_PROMOTIONINFO_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_PROMOTIONINFO_HPP
27
28 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
29 #include "memory/allocation.hpp"
24 30
25 // Forward declarations 31 // Forward declarations
26 class CompactibleFreeListSpace; 32 class CompactibleFreeListSpace;
27 33
28 class PromotedObject VALUE_OBJ_CLASS_SPEC { 34 class PromotedObject VALUE_OBJ_CLASS_SPEC {
202 208
203 void print_on(outputStream* st) const; 209 void print_on(outputStream* st) const;
204 void print_statistics(uint worker_id) const; 210 void print_statistics(uint worker_id) const;
205 }; 211 };
206 212
213
214 #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_PROMOTIONINFO_HPP