Prevent possible data race in access to PooledThread::_idle
This commit is contained in:
Родитель
8859346898
Коммит
2fc0e524fa
|
@ -128,6 +128,7 @@ void PooledThread::start(Thread::Priority priority, Runnable& target, const std:
|
|||
|
||||
inline bool PooledThread::idle()
|
||||
{
|
||||
FastMutex::ScopedLock lock(_mutex);
|
||||
return _idle;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче