Prevent possible data race in access to PooledThread::_idle

This commit is contained in:
Adriaan Schmidt 2014-12-18 13:04:33 +01:00
Родитель 8859346898
Коммит 2fc0e524fa
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -128,6 +128,7 @@ void PooledThread::start(Thread::Priority priority, Runnable& target, const std:
inline bool PooledThread::idle()
{
FastMutex::ScopedLock lock(_mutex);
return _idle;
}