< prev index next >

src/hotspot/share/gc/shared/gcName.hpp

Print this page

        

*** 36,45 **** --- 36,47 ---- ParNew, G1New, ConcurrentMarkSweep, G1Old, G1Full, + Z, + NA, GCNameEndSentinel }; class GCNameHelper { public:
*** 53,62 **** --- 55,66 ---- case ParNew: return "ParNew"; case G1New: return "G1New"; case ConcurrentMarkSweep: return "ConcurrentMarkSweep"; case G1Old: return "G1Old"; case G1Full: return "G1Full"; + case Z: return "Z"; + case NA: return "N/A"; default: ShouldNotReachHere(); return NULL; } } };
< prev index next >