< prev index next >

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

Print this page
rev 52487 : Worked on comments from Sangheon, Stefan

@@ -36,8 +36,19 @@
 protected:
   void initialize_alignments();
 
 public:
   G1CollectorPolicy();
+  virtual size_t heap_reservation_size_bytes();
+};
+
+class G1HeteroCollectorPolicy : public G1CollectorPolicy {
+  size_t _heap_reservation_size_bytes;
+
+protected:
+  void initialize_size_info();
+public:
+  G1HeteroCollectorPolicy();
+  size_t heap_reservation_size_bytes();
 };
 
 #endif // SHARE_VM_GC_G1_G1COLLECTORPOLICY_HPP
< prev index next >