]> git.stg.codes - stg.git/blobdiff - projects/stargazer/users_impl.cpp
Change some usleep() to nanosleep() `cause usleep() is obsolete since
[stg.git] / projects / stargazer / users_impl.cpp
index e58e7224d1332a3dbd26eab623adde4f7c57900b..249551875b3beb4ea44276849197bf63f23744d4 100644 (file)
@@ -467,13 +467,13 @@ if (!isRunning)
 nonstop = false;
 
 //5 seconds to thread stops itself
-unsigned i;
-for (i = 0; i < 25 * (users.size() / 50 + 1); i++)
+struct timespec ts = {0, 200000000};
+for (size_t i = 0; i < 25 * (users.size() / 50 + 1); i++)
     {
     if (!isRunning)
         break;
 
-    usleep(200000);
+    nanosleep(&ts, NULL);
     }
 
 //after 5 seconds waiting thread still running. now kill it