< prev index next >

src/hotspot/share/gc/g1/g1YCTypes.hpp

Print this page
rev 60059 : imported patch 8210462-fix-remaining-mentions-of-im

@@ -27,22 +27,22 @@
 
 #include "utilities/debug.hpp"
 
 enum G1YCType {
   Normal,
-  InitialMark,
+  ConcurrentStart,
   DuringMarkOrRebuild,
   Mixed,
   G1YCTypeEndSentinel
 };
 
 class G1YCTypeHelper {
  public:
   static const char* to_string(G1YCType type) {
     switch(type) {
       case Normal: return "Normal";
-      case InitialMark: return "Initial Mark";
+      case ConcurrentStart: return "Concurrent Start";
       case DuringMarkOrRebuild: return "During Mark";
       case Mixed: return "Mixed";
       default: ShouldNotReachHere(); return NULL;
     }
   }
< prev index next >