comparison src/share/vm/memory/collectorPolicy.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 c9ca3f51cf41
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_MEMORY_COLLECTORPOLICY_HPP
26 #define SHARE_VM_MEMORY_COLLECTORPOLICY_HPP
27
28 #include "memory/barrierSet.hpp"
29 #include "memory/genRemSet.hpp"
30 #include "memory/permGen.hpp"
24 31
25 // This class (or more correctly, subtypes of this class) 32 // This class (or more correctly, subtypes of this class)
26 // are used to define global garbage collector attributes. 33 // are used to define global garbage collector attributes.
27 // This includes initialization of generations and any other 34 // This includes initialization of generations and any other
28 // shared resources they may need. 35 // shared resources they may need.
332 339
333 MarkSweepPolicy* as_mark_sweep_policy() { return this; } 340 MarkSweepPolicy* as_mark_sweep_policy() { return this; }
334 341
335 void initialize_gc_policy_counters(); 342 void initialize_gc_policy_counters();
336 }; 343 };
344
345 #endif // SHARE_VM_MEMORY_COLLECTORPOLICY_HPP