Skip to content

Commit

Permalink
8079167: Fix documentation for G1SATBBufferEnqueueingThresholdPercent…
Browse files Browse the repository at this point in the history
… == 0

Reviewed-by: kbarrett, iwalulya
  • Loading branch information
Thomas Schatzl committed May 27, 2024
1 parent a083364 commit 61db2f5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/hotspot/share/gc/g1/g1_globals.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,11 @@
"Number of completed buffers that triggers log processing.") \
range(0, max_jint) \
\
product(uint, G1SATBBufferEnqueueingThresholdPercent, 60, \
product(uint, G1SATBBufferEnqueueingThresholdPercent, 60, \
"Before enqueueing them, each mutator thread tries to do some " \
"filtering on the SATB buffers it generates. If post-filtering " \
"the percentage of retained entries is over this threshold " \
"the buffer will be enqueued for processing. A value of 0 " \
"specifies that mutator threads should not do such filtering.") \
"the buffer will be enqueued for processing.") \
range(0, 100) \
\
product(uint, G1ExpandByPercentOfAvailable, 20, EXPERIMENTAL, \
Expand Down

1 comment on commit 61db2f5

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.