Top


定義場所(file name)

hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp

名前(function name)

void ThreadLocalAllocBuffer::resize_all_tlabs() {

本体部(body)

  {- -------------------------------------------
  (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.