hotspot/src/share/vm/gc/shared/collectedHeap.hpp
changeset 30871 e90a8de769e4
parent 30870 3050fdcdc60b
child 31346 a70d45c06136
equal deleted inserted replaced
30870:3050fdcdc60b 30871:e90a8de769e4
   288      }
   288      }
   289     _gc_cause = v;
   289     _gc_cause = v;
   290   }
   290   }
   291   GCCause::Cause gc_cause() { return _gc_cause; }
   291   GCCause::Cause gc_cause() { return _gc_cause; }
   292 
   292 
   293   // May be overridden to set additional parallelism.
       
   294   virtual void set_par_threads(uint t) { (void)t; };
       
   295 
       
   296   // General obj/array allocation facilities.
   293   // General obj/array allocation facilities.
   297   inline static oop obj_allocate(KlassHandle klass, int size, TRAPS);
   294   inline static oop obj_allocate(KlassHandle klass, int size, TRAPS);
   298   inline static oop array_allocate(KlassHandle klass, int size, int length, TRAPS);
   295   inline static oop array_allocate(KlassHandle klass, int size, int length, TRAPS);
   299   inline static oop array_allocate_nozero(KlassHandle klass, int size, int length, TRAPS);
   296   inline static oop array_allocate_nozero(KlassHandle klass, int size, int length, TRAPS);
   300 
   297