< prev index next >

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

Print this page

        

@@ -87,10 +87,11 @@
 //   GenCollectedHeap
 //     SerialHeap
 //     CMSHeap
 //   G1CollectedHeap
 //   ParallelScavengeHeap
+//   ZCollectedHeap
 //
 class CollectedHeap : public CHeapObj<mtInternal> {
   friend class VMStructs;
   friend class JVMCIVMStructs;
   friend class IsGCActiveMark; // Block structured external access to _is_gc_active

@@ -194,11 +195,12 @@
   enum Name {
     None,
     Serial,
     Parallel,
     CMS,
-    G1
+    G1,
+    Z
   };
 
   static inline size_t filler_array_max_size() {
     return _filler_array_max_size;
   }
< prev index next >