src/share/vm/gc_implementation/g1/heapRegion.cpp

changeset 3711
b632e80fc9dc
parent 3539
a9647476d1a4
child 3713
720b6a76dd9d
     1.1 --- a/src/share/vm/gc_implementation/g1/heapRegion.cpp	Fri Apr 13 01:59:38 2012 +0200
     1.2 +++ b/src/share/vm/gc_implementation/g1/heapRegion.cpp	Mon Apr 16 08:57:18 2012 +0200
     1.3 @@ -779,16 +779,15 @@
     1.4    G1OffsetTableContigSpace::print_on(st);
     1.5  }
     1.6  
     1.7 -void HeapRegion::verify(bool allow_dirty) const {
     1.8 +void HeapRegion::verify() const {
     1.9    bool dummy = false;
    1.10 -  verify(allow_dirty, VerifyOption_G1UsePrevMarking, /* failures */ &dummy);
    1.11 +  verify(VerifyOption_G1UsePrevMarking, /* failures */ &dummy);
    1.12  }
    1.13  
    1.14  // This really ought to be commoned up into OffsetTableContigSpace somehow.
    1.15  // We would need a mechanism to make that code skip dead objects.
    1.16  
    1.17 -void HeapRegion::verify(bool allow_dirty,
    1.18 -                        VerifyOption vo,
    1.19 +void HeapRegion::verify(VerifyOption vo,
    1.20                          bool* failures) const {
    1.21    G1CollectedHeap* g1 = G1CollectedHeap::heap();
    1.22    *failures = false;

mercurial