hotspot/src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.cpp
NoopGCTask* NoopGCTask::create_on_c_heap() {
{- -------------------------------------------
(1) 新しい NoopGCTask オブジェクトを (C ヒープ上に) 生成してリターンする.
---------------------------------------- -}
NoopGCTask* result = new(ResourceObj::C_HEAP) NoopGCTask(true);
return result;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.