src/hotspot/share/gc/shared/gcName.hpp
changeset 52925 9c18c9d839d3
parent 50525 767cdb97f103
child 53244 9807daeb47c4
--- a/src/hotspot/share/gc/shared/gcName.hpp	Mon Dec 10 17:34:49 2018 +0300
+++ b/src/hotspot/share/gc/shared/gcName.hpp	Mon Dec 10 15:47:44 2018 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -39,6 +39,7 @@
   G1Old,
   G1Full,
   Z,
+  Shenandoah,
   NA,
   GCNameEndSentinel
 };
@@ -58,6 +59,7 @@
       case G1Old: return "G1Old";
       case G1Full: return "G1Full";
       case Z: return "Z";
+      case Shenandoah: return "Shenandoah";
       case NA: return "N/A";
       default: ShouldNotReachHere(); return NULL;
     }