From 025c268f91ee1deab17891f00dc8c90c4770224f Mon Sep 17 00:00:00 2001 From: saturneric Date: Thu, 19 Oct 2023 18:51:20 +0800 Subject: fix: improve the stability of thread system --- src/core/module/ModuleManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/module/ModuleManager.cpp') diff --git a/src/core/module/ModuleManager.cpp b/src/core/module/ModuleManager.cpp index b9e73721..f578e67c 100644 --- a/src/core/module/ModuleManager.cpp +++ b/src/core/module/ModuleManager.cpp @@ -51,7 +51,7 @@ class ModuleManager::Impl { gpc_->RegisterModule(module); return 0; }), - __func__, nullptr, true)); + __func__, nullptr)); } void TriggerEvent(EventRefrernce event) { @@ -60,7 +60,7 @@ class ModuleManager::Impl { gpc_->TriggerEvent(event); return 0; }), - __func__, nullptr, true)); + __func__, nullptr)); } void ActiveModule(ModuleIdentifier identifier) { @@ -69,7 +69,7 @@ class ModuleManager::Impl { gpc_->ActiveModule(identifier); return 0; }), - __func__, nullptr, true)); + __func__, nullptr)); } std::optional GetTaskRunner(ModuleIdentifier module_id) { -- cgit v1.2.3