< prev index next >

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

Print this page
rev 8362 : 8079792: GC directory structure cleanup
Reviewed-by:

*** 20,31 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_EVACUATIONINFO_HPP ! #define SHARE_VM_GC_IMPLEMENTATION_G1_EVACUATIONINFO_HPP #include "memory/allocation.hpp" class EvacuationInfo : public StackObj { uint _collectionset_regions; --- 20,31 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_G1_EVACUATIONINFO_HPP ! #define SHARE_VM_GC_G1_EVACUATIONINFO_HPP #include "memory/allocation.hpp" class EvacuationInfo : public StackObj { uint _collectionset_regions;
*** 76,81 **** size_t alloc_regions_used_before() { return _alloc_regions_used_before; } size_t bytes_copied() { return _bytes_copied; } uint regions_freed() { return _regions_freed; } }; ! #endif // SHARE_VM_GC_IMPLEMENTATION_G1_EVACUATIONINFO_HPP --- 76,81 ---- size_t alloc_regions_used_before() { return _alloc_regions_used_before; } size_t bytes_copied() { return _bytes_copied; } uint regions_freed() { return _regions_freed; } }; ! #endif // SHARE_VM_GC_G1_EVACUATIONINFO_HPP
< prev index next >