src/share/vm/memory/genCollectedHeap.hpp

Print this page

        

*** 20,29 **** --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_MEMORY_GENCOLLECTEDHEAP_HPP + #define SHARE_VM_MEMORY_GENCOLLECTEDHEAP_HPP + + #include "gc_implementation/shared/adaptiveSizePolicy.hpp" + #include "memory/collectorPolicy.hpp" + #include "memory/generation.hpp" + #include "memory/sharedHeap.hpp" + class SubTasksDone; // A "GenCollectedHeap" is a SharedHeap that uses generational // collection. It is represented with a sequence of Generation's. class GenCollectedHeap : public SharedHeap {
*** 534,538 **** --- 542,548 ---- virtual void gc_epilogue(bool full); public: virtual void preload_and_dump(TRAPS) KERNEL_RETURN; }; + + #endif // SHARE_VM_MEMORY_GENCOLLECTEDHEAP_HPP