hotspot/src/share/vm/gc_implementation/shared/concurrentGCThread.cpp
void ConcurrentGCThread::stsJoin() {
{- -------------------------------------------
(1) (assert)
---------------------------------------- -}
assert( Thread::current()->is_ConcurrentGC_thread(),
"only a conc GC thread can call this" );
{- -------------------------------------------
(1) SuspendibleThreadSet::join() を呼び出し,
ConcurrentGCThread::_sts に格納されている SuspendibleThreadSet オブジェクトに対して
カレントスレッドを登録する
(See: SuspendibleThreadSet)
---------------------------------------- -}
_sts.join();
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.