hotspot/src/share/vm/gc_implementation/g1/heapRegion.hpp
changeset 25491 70fb742e40aa
parent 25490 59f226da8d81
child 25492 d27050bdfb04
equal deleted inserted replaced
25490:59f226da8d81 25491:70fb742e40aa
   245 
   245 
   246   // True iff an attempt to evacuate an object in the region failed.
   246   // True iff an attempt to evacuate an object in the region failed.
   247   bool _evacuation_failed;
   247   bool _evacuation_failed;
   248 
   248 
   249   // A heap region may be a member one of a number of special subsets, each
   249   // A heap region may be a member one of a number of special subsets, each
   250   // represented as linked lists through the field below.  Currently, there
   250   // represented as linked lists through the field below.  Currently, these
   251   // is only one set:
   251   // sets include:
   252   //   The collection set.
   252   //   The collection set.
       
   253   //   The set of allocation regions used in a collection pause.
       
   254   //   Spaces that may contain gray objects.
   253   HeapRegion* _next_in_special_set;
   255   HeapRegion* _next_in_special_set;
   254 
   256 
   255   // next region in the young "generation" region set
   257   // next region in the young "generation" region set
   256   HeapRegion* _next_young_region;
   258   HeapRegion* _next_young_region;
   257 
   259