< prev index next >

src/share/vm/gc/g1/g1ParScanThreadState.cpp

Print this page
rev 12906 : [mq]: gc_interface

@@ -36,11 +36,11 @@
 
 G1ParScanThreadState::G1ParScanThreadState(G1CollectedHeap* g1h, uint worker_id, size_t young_cset_length)
   : _g1h(g1h),
     _refs(g1h->task_queue(worker_id)),
     _dcq(&g1h->dirty_card_queue_set()),
-    _ct_bs(g1h->g1_barrier_set()),
+    _ct(g1h->g1_card_table()),
     _closures(NULL),
     _hash_seed(17),
     _worker_id(worker_id),
     _tenuring_threshold(g1h->g1_policy()->tenuring_threshold()),
     _age_table(false),

@@ -399,6 +399,5 @@
            "should not be in the CSet",
            p2i(old), p2i(forward_ptr));
     return forward_ptr;
   }
 }
-
< prev index next >