src/share/vm/gc_implementation/g1/concurrentMark.inline.hpp

changeset 2973
23d434c6290d
parent 2968
842b840e67db
child 3416
2ace1c4ee8da
equal deleted inserted replaced
2972:f75137faa7fe 2973:23d434c6290d
57 bool success = _task_queue->push(obj); 57 bool success = _task_queue->push(obj);
58 assert(success, "invariant"); 58 assert(success, "invariant");
59 } 59 }
60 60
61 statsOnly( int tmp_size = _task_queue->size(); 61 statsOnly( int tmp_size = _task_queue->size();
62 if (tmp_size > _local_max_size) 62 if (tmp_size > _local_max_size) {
63 _local_max_size = tmp_size; 63 _local_max_size = tmp_size;
64 }
64 ++_local_pushes ); 65 ++_local_pushes );
65 } 66 }
66 67
67 // This determines whether the method below will check both the local 68 // This determines whether the method below will check both the local
68 // and global fingers when determining whether to push on the stack a 69 // and global fingers when determining whether to push on the stack a

mercurial