src/share/vm/memory/tenuredGeneration.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/memory/tenuredGeneration.hpp

src/share/vm/memory/tenuredGeneration.hpp

Print this page
rev 7215 : imported patch remove_levels

*** 51,61 **** GenerationCounters* _gen_counters; CSpaceCounters* _space_counters; public: ! TenuredGeneration(ReservedSpace rs, size_t initial_byte_size, int level, GenRemSet* remset); Generation::Name kind() { return Generation::MarkSweepCompact; } // Printing --- 51,61 ---- GenerationCounters* _gen_counters; CSpaceCounters* _space_counters; public: ! TenuredGeneration(ReservedSpace rs, size_t initial_byte_size, GenRemSet* remset); Generation::Name kind() { return Generation::MarkSweepCompact; } // Printing
*** 96,106 **** // Performance Counter support void update_counters(); // Statistics ! virtual void update_gc_stats(int level, bool full); virtual bool promotion_attempt_is_safe(size_t max_promoted_in_bytes) const; void verify_alloc_buffers_clean(); }; --- 96,106 ---- // Performance Counter support void update_counters(); // Statistics ! virtual void update_gc_stats(Generation* current_generation, bool full); virtual bool promotion_attempt_is_safe(size_t max_promoted_in_bytes) const; void verify_alloc_buffers_clean(); };
src/share/vm/memory/tenuredGeneration.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File