]> git.stg.codes - stg.git/blobdiff - projects/stargazer/traffcounter_impl.cpp
Do not use pthread_kill to stop a thread
[stg.git] / projects / stargazer / traffcounter_impl.cpp
index a02e3b6d520f2c0350cbd9eeec2b200a71088896..da64a0b8bb2ceb68ee7c26e63f5eb52989eeee28 100644 (file)
@@ -152,16 +152,9 @@ for (int i = 0; i < 25 && !stopped; i++)
     nanosleep(&ts, NULL);
     }
 
-//after 5 seconds waiting thread still running. now kill it
 if (!stopped)
-    {
-    printfd(__FILE__, "kill TRAFFCOUNTER thread.\n");
-    if (pthread_kill(thread, SIGINT))
-        {
-        return -1;
-        }
-    printfd(__FILE__, "TRAFFCOUNTER killed\n");
-    }
+    return -1;
+
 printfd(__FILE__, "TRAFFCOUNTER::Stop()\n");
 
 return 0;