src/share/vm/gc_implementation/g1/concurrentMark.hpp

Print this page
rev 6446 : 8040807: G1: Enable G1CollectedHeap::stop()
Reviewed-by: TBD

@@ -821,10 +821,12 @@
 
   // Called to abort the marking cycle after a Full GC takes place.
   void abort();
 
   bool has_aborted()      { return _has_aborted; }
+  void set_has_aborted()   { _has_aborted = true; }
+  void clear_has_aborted() { _has_aborted = false; }
 
   // This prints the global/local fingers. It is used for debugging.
   NOT_PRODUCT(void print_finger();)
 
   void print_summary_info();