hotspot/src/share/vm/gc/shared/collectedHeap.hpp
changeset 38011 74a6871d896b
parent 37129 af29e306e50b
child 39695 946f1321c075
equal deleted inserted replaced
38010:51fe205359f8 38011:74a6871d896b
   207   virtual jint initialize() = 0;
   207   virtual jint initialize() = 0;
   208 
   208 
   209   // In many heaps, there will be a need to perform some initialization activities
   209   // In many heaps, there will be a need to perform some initialization activities
   210   // after the Universe is fully formed, but before general heap allocation is allowed.
   210   // after the Universe is fully formed, but before general heap allocation is allowed.
   211   // This is the correct place to place such initialization methods.
   211   // This is the correct place to place such initialization methods.
   212   virtual void post_initialize();
   212   virtual void post_initialize() = 0;
   213 
   213 
   214   // Stop any onging concurrent work and prepare for exit.
   214   // Stop any onging concurrent work and prepare for exit.
   215   virtual void stop() {}
   215   virtual void stop() {}
   216 
   216 
   217   void initialize_reserved_region(HeapWord *start, HeapWord *end);
   217   void initialize_reserved_region(HeapWord *start, HeapWord *end);