comparison src/share/vm/gc_implementation/parallelScavenge/psAdaptiveSizePolicy.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 da91efe96a93
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_PARALLELSCAVENGE_PSADAPTIVESIZEPOLICY_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSADAPTIVESIZEPOLICY_HPP
27
28 #include "gc_implementation/shared/adaptiveSizePolicy.hpp"
29 #include "gc_implementation/shared/gcStats.hpp"
30 #include "gc_implementation/shared/gcUtil.hpp"
31 #include "gc_interface/gcCause.hpp"
24 32
25 // This class keeps statistical information and computes the 33 // This class keeps statistical information and computes the
26 // optimal free space for both the young and old generation 34 // optimal free space for both the young and old generation
27 // based on current application characteristics (based on gc cost 35 // based on current application characteristics (based on gc cost
28 // and application footprint). 36 // and application footprint).
382 size_t promoted); 390 size_t promoted);
383 391
384 // Printing support 392 // Printing support
385 virtual bool print_adaptive_size_policy_on(outputStream* st) const; 393 virtual bool print_adaptive_size_policy_on(outputStream* st) const;
386 }; 394 };
395
396 #endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSADAPTIVESIZEPOLICY_HPP