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

changeset 3357
441e946dc1af
parent 3296
dc467e8b2c5e
child 3466
b4ebad3520bb
equal deleted inserted replaced
3356:67fdcb391461 3357:441e946dc1af
556 ScrubRSClosure scrub_cl(region_bm, card_bm); 556 ScrubRSClosure scrub_cl(region_bm, card_bm);
557 _g1->heap_region_iterate(&scrub_cl); 557 _g1->heap_region_iterate(&scrub_cl);
558 } 558 }
559 559
560 void G1RemSet::scrub_par(BitMap* region_bm, BitMap* card_bm, 560 void G1RemSet::scrub_par(BitMap* region_bm, BitMap* card_bm,
561 int worker_num, int claim_val) { 561 uint worker_num, int claim_val) {
562 ScrubRSClosure scrub_cl(region_bm, card_bm); 562 ScrubRSClosure scrub_cl(region_bm, card_bm);
563 _g1->heap_region_par_iterate_chunked(&scrub_cl, 563 _g1->heap_region_par_iterate_chunked(&scrub_cl,
564 worker_num, 564 worker_num,
565 (int) n_workers(), 565 n_workers(),
566 claim_val); 566 claim_val);
567 } 567 }
568 568
569 569
570 static IntHistogram out_of_histo(50, 50); 570 static IntHistogram out_of_histo(50, 50);

mercurial