comparison src/share/vm/gc_implementation/g1/g1RemSet.hpp @ 6198:24b9c7f4cae6

Merge
author coleenp
date Mon, 02 Jul 2012 13:11:28 -0400
parents d2a62e0f25eb
children da91efe96a93
comparison
equal deleted inserted replaced
6195:bcffa4c5eef6 6198:24b9c7f4cae6
34 34
35 // A G1RemSet in which each heap region has a rem set that records the 35 // A G1RemSet in which each heap region has a rem set that records the
36 // external heap references into it. Uses a mod ref bs to track updates, 36 // external heap references into it. Uses a mod ref bs to track updates,
37 // so that they can be used to update the individual region remsets. 37 // so that they can be used to update the individual region remsets.
38 38
39 class G1RemSet: public CHeapObj { 39 class G1RemSet: public CHeapObj<mtGC> {
40 protected: 40 protected:
41 G1CollectedHeap* _g1; 41 G1CollectedHeap* _g1;
42 unsigned _conc_refine_cards; 42 unsigned _conc_refine_cards;
43 uint n_workers(); 43 uint n_workers();
44 44