Skip to content

Commit

Permalink
8326590: Improve description of MarkStackSize[Max] flags
Browse files Browse the repository at this point in the history
Reviewed-by: iwalulya
  • Loading branch information
Thomas Schatzl committed Feb 28, 2024
1 parent e7e8083 commit eb4b6fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/hotspot/share/gc/shared/gc_globals.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,13 @@
\
/* where does the range max value of (max_jint - 1) come from? */ \
product(size_t, MarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M), \
"Maximum size of marking stack") \
range(1, (INT_MAX - 1)) \
"Maximum size of marking stack in bytes.") \
range(1, (INT_MAX - 1)) \
\
product(size_t, MarkStackSize, NOT_LP64(64*K) LP64_ONLY(4*M), \
"Size of marking stack") \
"Size of marking stack in bytes.") \
constraint(MarkStackSizeConstraintFunc,AfterErgo) \
range(1, (INT_MAX - 1)) \
range(1, (INT_MAX - 1)) \
\
product(bool, ParallelRefProcEnabled, false, \
"Enable parallel reference processing whenever possible") \
Expand Down

1 comment on commit eb4b6fa

@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.