From f59580dc6c95a4190aaa6bf8e7172ac22b2d7cdb Mon Sep 17 00:00:00 2001 From: Shauren Date: Sat, 8 Oct 2022 20:08:29 +0200 Subject: Core/Threading: Create ThreadPool class (cherry picked from commit d82b2b1a6712df685b989911e3e519809935de03) --- src/server/worldserver/Main.cpp | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'src/server') 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> threadPool(new std::vector(), [ioContext](std::vector* del) - { - ioContext->stop(); - for (std::thread& thr : *del) - thr.join(); - - delete del; - }); - if (numThreads < 1) numThreads = 1; + std::shared_ptr threadPool = std::make_shared(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(); -- cgit v1.2.3