comparison src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.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 be3f9c242c9d
children 1e3493ac2d11
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_FREECHUNK_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_FREECHUNK_HPP
27
28 #include "memory/allocation.hpp"
29 #include "memory/memRegion.hpp"
30 #include "oops/markOop.hpp"
31 #include "runtime/mutex.hpp"
32 #include "utilities/debug.hpp"
33 #include "utilities/globalDefinitions.hpp"
34 #include "utilities/ostream.hpp"
24 35
25 // 36 //
26 // Free block maintenance for Concurrent Mark Sweep Generation 37 // Free block maintenance for Concurrent Mark Sweep Generation
27 // 38 //
28 // The main data structure for free blocks are 39 // The main data structure for free blocks are
139 void print_on(outputStream* st); 150 void print_on(outputStream* st);
140 }; 151 };
141 152
142 extern size_t MinChunkSize; 153 extern size_t MinChunkSize;
143 154
155
156 #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_FREECHUNK_HPP