< prev index next >

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

Print this page
rev 10385 : [mq]: step.01

@@ -70,11 +70,10 @@
   bool _during_marking;
   bool _mark_in_progress;
   bool _in_marking_window;
   bool _in_marking_window_im;
 
-  bool _concurrent_cycle_started;
   bool _full_collection;
 
   public:
     G1CollectorState() :
       _gcs_are_young(true),

@@ -86,11 +85,10 @@
 
       _during_marking(false),
       _mark_in_progress(false),
       _in_marking_window(false),
       _in_marking_window_im(false),
-      _concurrent_cycle_started(false),
       _full_collection(false) {}
 
   // Setters
   void set_gcs_are_young(bool v) { _gcs_are_young = v; }
   void set_last_gc_was_young(bool v) { _last_gc_was_young = v; }

@@ -99,11 +97,10 @@
   void set_initiate_conc_mark_if_possible(bool v) { _initiate_conc_mark_if_possible = v; }
   void set_during_marking(bool v) { _during_marking = v; }
   void set_mark_in_progress(bool v) { _mark_in_progress = v; }
   void set_in_marking_window(bool v) { _in_marking_window = v; }
   void set_in_marking_window_im(bool v) { _in_marking_window_im = v; }
-  void set_concurrent_cycle_started(bool v) { _concurrent_cycle_started = v; }
   void set_full_collection(bool v) { _full_collection = v; }
 
   // Getters
   bool gcs_are_young() const { return _gcs_are_young; }
   bool last_gc_was_young() const { return _last_gc_was_young; }

@@ -112,11 +109,10 @@
   bool initiate_conc_mark_if_possible() const { return _initiate_conc_mark_if_possible; }
   bool during_marking() const { return _during_marking; }
   bool mark_in_progress() const { return _mark_in_progress; }
   bool in_marking_window() const { return _in_marking_window; }
   bool in_marking_window_im() const { return _in_marking_window_im; }
-  bool concurrent_cycle_started() const { return _concurrent_cycle_started; }
   bool full_collection() const { return _full_collection; }
 
   // Composite booleans (clients worry about flickering)
   bool during_concurrent_mark() const {
     return (_in_marking_window && !_in_marking_window_im);
< prev index next >