8326590: Improve description of MarkStackSize[Max] flags

Reviewed-by: iwalulya
This commit is contained in:
Thomas Schatzl 2024-02-28 10:42:44 +00:00
parent e7e8083139
commit eb4b6fa621

@ -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") \