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

Print this page

        

*** 20,29 **** --- 20,36 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSGCADAPTIVEPOLICYCOUNTERS_HPP + #define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSGCADAPTIVEPOLICYCOUNTERS_HPP + + #include "gc_implementation/parallelScavenge/psAdaptiveSizePolicy.hpp" + #include "gc_implementation/shared/gcAdaptivePolicyCounters.hpp" + #include "gc_implementation/shared/gcPolicyCounters.hpp" + // PSGCAdaptivePolicyCounters is a holder class for performance counters // that track the data and decisions for the ergonomics policy for the // parallel scavenge collector. class PSGCAdaptivePolicyCounters : public GCAdaptivePolicyCounters {
*** 198,202 **** --- 205,211 ---- virtual GCPolicyCounters::Name kind() const { return GCPolicyCounters::PSGCAdaptivePolicyCountersKind; } }; + + #endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSGCADAPTIVEPOLICYCOUNTERS_HPP