Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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