X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..2e4de7bb1dcdf34bce1769c34c7cd42fb64637e2:/projects/stargazer/stg_timer.cpp diff --git a/projects/stargazer/stg_timer.cpp b/projects/stargazer/stg_timer.cpp index 79844ba3..81128c7a 100644 --- a/projects/stargazer/stg_timer.cpp +++ b/projects/stargazer/stg_timer.cpp @@ -1,9 +1,14 @@ -#include #include +#include #include +#include -#include "common.h" +#include "stg/common.h" + +#include "stg_timer.h" + +void * StgTimer(void *); static int nonstop; static pthread_t thrStgTimer; @@ -33,7 +38,7 @@ struct tm lt; memset(<, 0, sizeof(lt)); lt.tm_year = 2007 - 1900; // 2005 -lt.tm_mon = 10 - 1; // Nov +lt.tm_mon = 11 - 1; // Nov lt.tm_hour = 23; // 23 h lt.tm_min = 57; // 50 min lt.tm_sec = 0; // 00 sec @@ -54,18 +59,26 @@ switch (START_TIME) stgTime = mktime(<); break; } +#else +stgTime = time(NULL); #endif +sigset_t signalSet; +sigfillset(&signalSet); +pthread_sigmask(SIG_BLOCK, &signalSet, NULL); + nonstop = 1; isTimerRunning = true; while (nonstop) { #ifdef STG_TIMER_DEBUG - usleep(1000000 / TIME_SPEED); + struct timespec ts = {0, 1000000000 / TIME_SPEED}; + nanosleep(&ts, NULL); stgTime++; #else + struct timespec ts = {0, 500000000}; + nanosleep(&ts, NULL); stgTime = time(NULL); - usleep(500000); #endif } isTimerRunning = false; @@ -79,7 +92,7 @@ static int a = 0; isTimerRunning = false; if (a == 0) - if (pthread_create(&thrStgTimer, NULL, StgTimer, NULL)) + if (pthread_create(&thrStgTimer, NULL, &StgTimer, NULL)) { isTimerRunning = false; return -1; @@ -104,9 +117,11 @@ return isTimerRunning; int stgUsleep(unsigned long t) { #ifdef STG_TIMER_DEBUG -return usleep(t / TIME_SPEED); +struct timespec ts = {static_cast((t / TIME_SPEED) / 1000000), static_cast(((t / TIME_SPEED) % 1000000) * 1000)}; +return nanosleep(&ts, NULL); #else -return usleep(t); +struct timespec ts = {static_cast(t / 1000000), static_cast((t % 1000000) * 1000)}; +return nanosleep(&ts, NULL); #endif } //----------------------------------------------------------------------------- @@ -116,5 +131,3 @@ void WaitTimer() stgUsleep(200000); } //----------------------------------------------------------------------------- - -