hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp
void ThreadLocalAllocBuffer::resize_all_tlabs() {
{- -------------------------------------------
(1) 全ての JavaThread の TLAB に対して ThreadLocalAllocBuffer::resize() を呼び出すだけ.
---------------------------------------- -}
for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
thread->tlab().resize();
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.