src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp

Print this page

        

*** 20,29 **** --- 20,40 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1COLLECTEDHEAP_HPP + #define SHARE_VM_GC_IMPLEMENTATION_G1_G1COLLECTEDHEAP_HPP + + #include "gc_implementation/g1/concurrentMark.hpp" + #include "gc_implementation/g1/g1RemSet.hpp" + #include "gc_implementation/g1/heapRegion.hpp" + #include "gc_implementation/parNew/parGCAllocBuffer.hpp" + #include "memory/barrierSet.hpp" + #include "memory/memRegion.hpp" + #include "memory/sharedHeap.hpp" + // A "G1CollectedHeap" is an implementation of a java heap for HotSpot. // It uses the "Garbage First" heap organization and algorithm, which // may combine concurrent marking with parallel, incremental compaction of // heap subsets that will yield large amounts of garbage.
*** 1796,1800 **** --- 1807,1813 ---- } public: void trim_queue(); }; + + #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1COLLECTEDHEAP_HPP