Skip to content

Commit eb4b6fa

Browse files
author
Thomas Schatzl
committed
8326590: Improve description of MarkStackSize[Max] flags
Reviewed-by: iwalulya
1 parent e7e8083 commit eb4b6fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/hotspot/share/gc/shared/gc_globals.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,13 @@
213213
\
214214
/* where does the range max value of (max_jint - 1) come from? */ \
215215
product(size_t, MarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M), \
216-
"Maximum size of marking stack") \
217-
range(1, (INT_MAX - 1)) \
216+
"Maximum size of marking stack in bytes.") \
217+
range(1, (INT_MAX - 1)) \
218218
\
219219
product(size_t, MarkStackSize, NOT_LP64(64*K) LP64_ONLY(4*M), \
220-
"Size of marking stack") \
220+
"Size of marking stack in bytes.") \
221221
constraint(MarkStackSizeConstraintFunc,AfterErgo) \
222-
range(1, (INT_MAX - 1)) \
222+
range(1, (INT_MAX - 1)) \
223223
\
224224
product(bool, ParallelRefProcEnabled, false, \
225225
"Enable parallel reference processing whenever possible") \

0 commit comments

Comments
 (0)