< prev index next >

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

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

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