hotspot/src/share/vm/memory/tenuredGeneration.hpp
changeset 28032 195f814dfa62
parent 28031 10aec24d2b61
child 28033 ab63acbd99ec
--- a/hotspot/src/share/vm/memory/tenuredGeneration.hpp	Wed Dec 10 11:30:46 2014 +0100
+++ b/hotspot/src/share/vm/memory/tenuredGeneration.hpp	Wed Dec 10 11:31:43 2014 +0100
@@ -43,8 +43,6 @@
 
  protected:
   ContiguousSpace*  _the_space;       // actual space holding objects
-  WaterMark  _last_gc;                // watermark between objects allocated before
-                                      // and after last GC.
 
   GenerationCounters*   _gen_counters;
   CSpaceCounters*       _space_counters;
@@ -104,10 +102,6 @@
   virtual inline HeapWord* allocate(size_t word_size, bool is_tlab);
   virtual inline HeapWord* par_allocate(size_t word_size, bool is_tlab);
 
-  // Accessing marks
-  inline WaterMark top_mark();
-  inline WaterMark bottom_mark();
-
 #define TenuredGen_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix)     \
   void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl);
   TenuredGen_SINCE_SAVE_MARKS_DECL(OopsInGenClosure,_v)