src/share/vm/gc_implementation/parallelScavenge/psAdaptiveSizePolicy.hpp

changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 4037
da91efe96a93
equal deleted inserted replaced
2313:e33f46fc48ed 2314: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

mercurial