aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver/Main.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-10-08 20:08:29 +0200
committerShauren <shauren.trinity@gmail.com>2022-10-13 11:54:18 +0200
commitf59580dc6c95a4190aaa6bf8e7172ac22b2d7cdb (patch)
treeab074db0a9a4eefda7c4c09ee80b03bebc609a2a /src/server/worldserver/Main.cpp
parentfee5160fe5f2762b2e739564c68632caf0efc94c (diff)
Core/Threading: Create ThreadPool class
(cherry picked from commit d82b2b1a6712df685b989911e3e519809935de03)
Diffstat (limited to 'src/server/worldserver/Main.cpp')
-rw-r--r--src/server/worldserver/Main.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp
index 69b9b00d978..8f08a00a734 100644
--- a/src/server/worldserver/Main.cpp
+++ b/src/server/worldserver/Main.cpp
@@ -49,6 +49,7 @@
#include "SecretMgr.h"
#include "TCSoap.h"
#include "TerrainMgr.h"
+#include "ThreadPool.h"
#include "World.h"
#include "WorldSocket.h"
#include "WorldSocketMgr.h"
@@ -248,20 +249,13 @@ extern int main(int argc, char** argv)
// Start the Boost based thread pool
int numThreads = sConfigMgr->GetIntDefault("ThreadPool", 1);
- std::shared_ptr<std::vector<std::thread>> threadPool(new std::vector<std::thread>(), [ioContext](std::vector<std::thread>* del)
- {
- ioContext->stop();
- for (std::thread& thr : *del)
- thr.join();
-
- delete del;
- });
-
if (numThreads < 1)
numThreads = 1;
+ std::shared_ptr<Trinity::ThreadPool> threadPool = std::make_shared<Trinity::ThreadPool>(numThreads);
+
for (int i = 0; i < numThreads; ++i)
- threadPool->push_back(std::thread([ioContext]() { ioContext->run(); }));
+ threadPool->PostWork([ioContext]() { ioContext->run(); });
// Set process priority according to configuration settings
SetProcessPriority("server.worldserver", sConfigMgr->GetIntDefault(CONFIG_PROCESSOR_AFFINITY, 0), sConfigMgr->GetBoolDefault(CONFIG_HIGH_PRIORITY, false));
@@ -406,6 +400,8 @@ extern int main(int argc, char** argv)
WorldPackets::Auth::ConnectTo::ShutdownEncryption();
WorldPackets::Auth::EnterEncryptedMode::ShutdownEncryption();
+ ioContext->stop();
+
threadPool.reset();
sLog->SetSynchronous();