hotspot/src/share/vm/gc_implementation/parallelScavenge/gcTaskThread.cpp
changeset 29464 02c245ad3ec9
parent 29326 ebaa169c6dc3
child 29798 451c73fdf690
equal deleted inserted replaced
29331:b788134d664a 29464:02c245ad3ec9
    51     _time_stamps = NEW_C_HEAP_ARRAY(GCTaskTimeStamp, GCTaskTimeStampEntries, mtGC);
    51     _time_stamps = NEW_C_HEAP_ARRAY(GCTaskTimeStamp, GCTaskTimeStampEntries, mtGC);
    52 
    52 
    53     guarantee(_time_stamps != NULL, "Sanity");
    53     guarantee(_time_stamps != NULL, "Sanity");
    54   }
    54   }
    55   set_id(which);
    55   set_id(which);
    56   set_name("GC task thread#%d (ParallelGC)", which);
    56   set_name("ParGC Thread#%d", which);
    57 }
    57 }
    58 
    58 
    59 GCTaskThread::~GCTaskThread() {
    59 GCTaskThread::~GCTaskThread() {
    60   if (_time_stamps != NULL) {
    60   if (_time_stamps != NULL) {
    61     FREE_C_HEAP_ARRAY(GCTaskTimeStamp, _time_stamps);
    61     FREE_C_HEAP_ARRAY(GCTaskTimeStamp, _time_stamps);