1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-10-01 12:22:01 +00:00

Fix improper thread exit name

This commit is contained in:
cathery 2019-12-04 21:47:28 +03:00
parent e9c9c67a12
commit 7bb3dc44d8

View File

@ -375,11 +375,11 @@ Result mainLoop()
pscPmModuleFinalize(&pscModule); pscPmModuleFinalize(&pscModule);
pscPmModuleClose(&pscModule); pscPmModuleClose(&pscModule);
eventClose(&pscModule.event); eventClose(&pscModule.event);
pscThread.Close(); pscThread.Exit();
WriteToLog("Destroying events"); WriteToLog("Destroying events");
CloseEvents(); CloseEvents();
eventThread.Close(); eventThread.Exit();
WriteToLog("Clearing interfaces"); WriteToLog("Clearing interfaces");
controllerInterfaces.clear(); controllerInterfaces.clear();