src/share/vm/gc_implementation/shared/adaptiveSizePolicy.hpp

Print this page

        

*** 20,29 **** --- 20,38 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP + #define SHARE_VM_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP + + #include "gc_implementation/shared/gcUtil.hpp" + #include "gc_interface/collectedHeap.hpp" + #include "gc_interface/gcCause.hpp" + #include "memory/allocation.hpp" + #include "memory/universe.hpp" + // This class keeps statistical information and computes the // size of the heap. // Forward decls class elapsedTimer;
*** 501,505 **** --- 510,516 ---- assert(UseAdaptiveSizePolicy, "Should not be in use"); _size_policy->print_adaptive_size_policy_on(gclog_or_tty); } } }; + + #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP