Skip to content

Commit 9a3a9b1

Browse files
committedNov 29, 2021
8277865: G1: Change integer division to floating point division
Reviewed-by: ayang, tschatzl
1 parent aed53ee commit 9a3a9b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/gc/g1/g1ConcurrentMark.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ class G1PreConcurrentStartTask::NoteStartOfMarkTask : public G1AbstractSubTask {
770770
double worker_cost() const override {
771771
// The work done per region is very small, therefore we choose this magic number to cap the number
772772
// of threads used when there are few regions.
773-
const uint regions_per_thread = 1000;
773+
const double regions_per_thread = 1000;
774774
return _claimer.n_regions() / regions_per_thread;
775775
}
776776

0 commit comments

Comments
 (0)
Please sign in to comment.