mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8019375: Internal symbol table size should be tunable
Reviewed-by: coleenp, kamg
This commit is contained in:
parent
088ded71f9
commit
c3d0e64506
6 changed files with 19 additions and 22 deletions
|
@ -2045,6 +2045,9 @@ bool Arguments::check_vm_args_consistency() {
|
|||
status = status && verify_interval(StringTableSize, minimumStringTableSize,
|
||||
(max_uintx / StringTable::bucket_size()), "StringTable size");
|
||||
|
||||
status = status && verify_interval(SymbolTableSize, minimumSymbolTableSize,
|
||||
(max_uintx / SymbolTable::bucket_size()), "SymbolTable size");
|
||||
|
||||
if (MinHeapFreeRatio > MaxHeapFreeRatio) {
|
||||
jio_fprintf(defaultStream::error_stream(),
|
||||
"MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue