]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp
Use std::jthread and C++17.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / stgconfig.cpp
index 3f47f24b87bb0f5e7ef30ae35e473e9c43cd472f..a63478bd714435ba3aa185cebc88baf61b674e0e 100644 (file)
@@ -102,13 +102,7 @@ int STG_CONFIG::Start()
         return -1;
     }
 
-    if (pthread_create(&thread, NULL, Run, this))
-    {
-        errorStr = std::string("Cannot create thread: '") + strerror(errno) + "'.";
-        printfd(__FILE__, "%s\n", errorStr.c_str());
-        logger(errorStr);
-        return -1;
-    }
+    m_thread = std::jthread([this](auto token){ Run(token); });
 
     return 0;
 }
@@ -119,6 +113,7 @@ int STG_CONFIG::Stop()
         return 0;
 
     config.Stop();
+    m_thread.request_stop();
 
     //5 seconds to thread stops itself
     for (size_t i = 0; i < 25; ++i)
@@ -131,23 +126,20 @@ int STG_CONFIG::Stop()
     }
 
     if (isRunning)
-        return -1;
+        m_thread.detach();
 
     return 0;
 }
 //-----------------------------------------------------------------------------
-void * STG_CONFIG::Run(void * d)
+void STG_CONFIG::Run(std::stop_token token)
 {
     sigset_t signalSet;
     sigfillset(&signalSet);
     pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
 
-    STG_CONFIG & stgConf = *static_cast<STG_CONFIG *>(d);
-    stgConf.isRunning = true;
-
-    stgConf.config.Run();
+    isRunning = true;
 
-    stgConf.isRunning = false;
+    config.Run(token);
 
-    return NULL;
+    isRunning = false;
 }