src/share/vm/gc_implementation/parallelScavenge/vmPSOperations.cpp

changeset 2971
c9ca3f51cf41
parent 2532
c798c277ddd1
child 4037
da91efe96a93
     1.1 --- a/src/share/vm/gc_implementation/parallelScavenge/vmPSOperations.cpp	Wed Jun 15 10:18:04 2011 -0700
     1.2 +++ b/src/share/vm/gc_implementation/parallelScavenge/vmPSOperations.cpp	Thu Jun 16 15:51:57 2011 -0400
     1.3 @@ -33,10 +33,9 @@
     1.4  
     1.5  // The following methods are used by the parallel scavenge collector
     1.6  VM_ParallelGCFailedAllocation::VM_ParallelGCFailedAllocation(size_t size,
     1.7 -  bool is_tlab, unsigned int gc_count) :
     1.8 +                                                      unsigned int gc_count) :
     1.9    VM_GC_Operation(gc_count, GCCause::_allocation_failure),
    1.10    _size(size),
    1.11 -  _is_tlab(is_tlab),
    1.12    _result(NULL)
    1.13  {
    1.14  }
    1.15 @@ -48,7 +47,7 @@
    1.16    assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap");
    1.17  
    1.18    GCCauseSetter gccs(heap, _gc_cause);
    1.19 -  _result = heap->failed_mem_allocate(_size, _is_tlab);
    1.20 +  _result = heap->failed_mem_allocate(_size);
    1.21  
    1.22    if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
    1.23      set_gc_locked();

mercurial