comparison src/share/vm/gc_implementation/g1/concurrentMark.hpp @ 6010:720b6a76dd9d

7157073: G1: type change size_t -> uint for region counts / indexes Summary: Change the type of fields / variables / etc. that represent region counts and indeces from size_t to uint. Reviewed-by: iveresov, brutisso, jmasa, jwilhelm
author tonyp
date Wed, 18 Apr 2012 07:21:15 -0400
parents 2a0172480595
children d2a62e0f25eb
comparison
equal deleted inserted replaced
6009:dde53abda3d6 6010:720b6a76dd9d
634 // Attempts to steal an object from the task queues of other tasks 634 // Attempts to steal an object from the task queues of other tasks
635 bool try_stealing(int task_num, int* hash_seed, oop& obj) { 635 bool try_stealing(int task_num, int* hash_seed, oop& obj) {
636 return _task_queues->steal(task_num, hash_seed, obj); 636 return _task_queues->steal(task_num, hash_seed, obj);
637 } 637 }
638 638
639 ConcurrentMark(ReservedSpace rs, int max_regions); 639 ConcurrentMark(ReservedSpace rs, uint max_regions);
640 ~ConcurrentMark(); 640 ~ConcurrentMark();
641 641
642 ConcurrentMarkThread* cmThread() { return _cmThread; } 642 ConcurrentMarkThread* cmThread() { return _cmThread; }
643 643
644 CMBitMapRO* prevMarkBitMap() const { return _prevMarkBitMap; } 644 CMBitMapRO* prevMarkBitMap() const { return _prevMarkBitMap; }