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