< prev index next >

src/share/vm/gc/g1/g1Allocator.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,37 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1ALLOCATOR_HPP ! #define SHARE_VM_GC_IMPLEMENTATION_G1_G1ALLOCATOR_HPP ! #include "gc_implementation/g1/g1AllocationContext.hpp" ! #include "gc_implementation/g1/g1AllocRegion.hpp" ! #include "gc_implementation/g1/g1InCSetState.hpp" ! #include "gc_implementation/shared/plab.hpp" ! #include "gc_interface/collectedHeap.hpp" class EvacuationInfo; // Base class for G1 allocators. class G1Allocator : public CHeapObj<mtGC> { --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_G1_G1ALLOCATOR_HPP ! #define SHARE_VM_GC_G1_G1ALLOCATOR_HPP ! #include "gc/g1/g1AllocRegion.hpp" ! #include "gc/g1/g1AllocationContext.hpp" ! #include "gc/g1/g1InCSetState.hpp" ! #include "gc/shared/collectedHeap.hpp" ! #include "gc/shared/plab.hpp" class EvacuationInfo; // Base class for G1 allocators. class G1Allocator : public CHeapObj<mtGC> {
*** 267,272 **** virtual void retire_alloc_buffers(); virtual void waste(size_t& wasted, size_t& undo_wasted); }; ! #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1ALLOCATOR_HPP --- 267,272 ---- virtual void retire_alloc_buffers(); virtual void waste(size_t& wasted, size_t& undo_wasted); }; ! #endif // SHARE_VM_GC_G1_G1ALLOCATOR_HPP
< prev index next >