Core/TaskScheduler: Rework using atomics and WorkStealingQueue

This commit is contained in:
SirLynix
2024-02-02 14:27:18 +01:00
parent 5db0c4ed09
commit 7f1ef0fe41
4 changed files with 310 additions and 85 deletions

View File

@@ -6,6 +6,10 @@
namespace Nz
{
inline unsigned int TaskScheduler::GetWorkerCount() const
{
return m_workerCount;
}
}
#include <Nazara/Core/DebugOff.hpp>