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

changeset 6719
8e20ef014b08
parent 6691
e4d318eea75a
child 6735
a45a4f5a9609
     1.1 --- a/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp	Tue Feb 11 13:29:53 2014 +0100
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp	Wed Jun 11 10:46:47 2014 +0200
     1.3 @@ -2258,12 +2258,9 @@
     1.4                                  // degree of mt discovery
     1.5                             false,
     1.6                                  // Reference discovery is not atomic
     1.7 -                           &_is_alive_closure_cm,
     1.8 +                           &_is_alive_closure_cm);
     1.9                                  // is alive closure
    1.10                                  // (for efficiency/performance)
    1.11 -                           true);
    1.12 -                                // Setting next fields of discovered
    1.13 -                                // lists requires a barrier.
    1.14  
    1.15    // STW ref processor
    1.16    _ref_processor_stw =
    1.17 @@ -2278,12 +2275,9 @@
    1.18                                  // degree of mt discovery
    1.19                             true,
    1.20                                  // Reference discovery is atomic
    1.21 -                           &_is_alive_closure_stw,
    1.22 +                           &_is_alive_closure_stw);
    1.23                                  // is alive closure
    1.24                                  // (for efficiency/performance)
    1.25 -                           false);
    1.26 -                                // Setting next fields of discovered
    1.27 -                                // lists does not require a barrier.
    1.28  }
    1.29  
    1.30  size_t G1CollectedHeap::capacity() const {

mercurial