8292686: runtime/cds/appcds/TestWithProfiler.java SIGSEGV in TableStatistics ctr

Reviewed-by: dcubed, hseigel
This commit is contained in:
Coleen Phillimore 2022-08-19 20:47:24 +00:00
parent 235151ead8
commit 07c9ba74fa
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ void SymbolTable::create_table () {
_current_size = ((size_t)1) << start_size_log_2;
log_trace(symboltable)("Start size: " SIZE_FORMAT " (" SIZE_FORMAT ")",
_current_size, start_size_log_2);
_local_table = new SymbolTableHash(start_size_log_2, END_SIZE, REHASH_LEN);
_local_table = new SymbolTableHash(start_size_log_2, END_SIZE, REHASH_LEN, true);
// Initialize the arena for global symbols, size passed in depends on CDS.
if (symbol_alloc_arena_size == 0) {