Adding ThreadPool (doesnt work)

This commit is contained in:
Dynamitos
2023-12-17 16:16:46 +01:00
parent c409a3acd0
commit 34e0d283e8
15 changed files with 82 additions and 661 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
#pragma once
#include "MinimalEngine.h"
#include "SystemBase.h"
#include <thread_pool/thread_pool.h>
namespace Seele
{
@@ -13,7 +12,7 @@ public:
Executor();
~Executor();
private:
dp::thread_pool<> pool;
ThreadPool pool;
};
} // namespace System
} // namespace Seele