< prev index next >

src/share/vm/gc/shenandoah/shenandoahHeap.hpp

Print this page
rev 14442 : Backout: Refactor evac-in-progress flag to more general gc-phase flag.

@@ -105,11 +105,10 @@
 // // CollectedHeap
 // //    SharedHeap
 // //      ShenandoahHeap
 
 class ShenandoahHeap : public CollectedHeap {
-
   enum CancelState {
 
     // Normal state. GC has not been cancelled and is open for cancellation.
     // Worker threads can suspend for safepoint.
     CANCELLABLE,

@@ -124,18 +123,10 @@
     NOT_CANCELLED
 
   };
 
 public:
-  enum GCPhaseBitPos {
-    EVACUATION_BITPOS = 1
-  };
-  enum GCPhase {
-    NONE = 0,
-    EVACUATION = 1 << EVACUATION_BITPOS
-  };
-
   enum ShenandoahCancelCause {
     _oom_evacuation,
     _vm_stop,
   };
 private:
< prev index next >