mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8247470: Fix CHeap GrowableArray NMT accounting
Reviewed-by: coleenp, tschatzl, kbarrett
This commit is contained in:
parent
0a108f9ef2
commit
77bdc30650
67 changed files with 144 additions and 158 deletions
|
@ -623,7 +623,7 @@ size_t StringTable::verify_and_compare_entries() {
|
|||
Thread* thr = Thread::current();
|
||||
GrowableArray<oop>* oops =
|
||||
new (ResourceObj::C_HEAP, mtInternal)
|
||||
GrowableArray<oop>((int)_current_size, true);
|
||||
GrowableArray<oop>((int)_current_size, mtInternal);
|
||||
|
||||
VerifyCompStrings vcs(oops);
|
||||
if (!_local_table->try_scan(thr, vcs)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue