aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleManager.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-19 10:51:20 +0000
committersaturneric <[email protected]>2023-10-19 10:51:20 +0000
commit025c268f91ee1deab17891f00dc8c90c4770224f (patch)
tree3454263c7e5d4545bc5bac624eba17ca71257654 /src/core/module/ModuleManager.cpp
parentfeat: using pool for concurrent executions, not stable yet (diff)
downloadGpgFrontend-025c268f91ee1deab17891f00dc8c90c4770224f.tar.gz
GpgFrontend-025c268f91ee1deab17891f00dc8c90c4770224f.zip
fix: improve the stability of thread system
Diffstat (limited to 'src/core/module/ModuleManager.cpp')
-rw-r--r--src/core/module/ModuleManager.cpp6
1 files changed, 3 insertions, 3 deletions
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<TaskRunnerPtr> GetTaskRunner(ModuleIdentifier module_id) {