Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Limit the range of parallelism to avoid overflows.
  • Loading branch information
schmelter-sap committed May 28, 2026
commit e7a6eeaa517aca97c07db23b5be287bf98d31e7f
1 change: 1 addition & 0 deletions src/hotspot/share/runtime/globals.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ const int ObjectAlignmentInBytes = 8;
product(uint, HeapDumpParallelism, 0, MANAGEABLE, \
"Sets the parallelism of the heap dump creation. 0 means to let "\
"the VM decide.") \
range(0, 100000) \
\
/* SapMachine 2026-05-06: Allow to skip content of arrays in dumps.*/ \
product(bool, LimitPrimitiveArrayContentInHeapDump, false, MANAGEABLE, \
Expand Down
Loading