X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e1c08c2c174c75d7c5cd2ec5d0b974c6f240ba7e..1347f3d1e04bedd1508589173f577673ee2c5554:/projects/stargazer/stg_timer.cpp diff --git a/projects/stargazer/stg_timer.cpp b/projects/stargazer/stg_timer.cpp index b17153cf..81128c7a 100644 --- a/projects/stargazer/stg_timer.cpp +++ b/projects/stargazer/stg_timer.cpp @@ -2,8 +2,13 @@ #include #include +#include -#include "common.h" +#include "stg/common.h" + +#include "stg_timer.h" + +void * StgTimer(void *); static int nonstop; static pthread_t thrStgTimer; @@ -54,21 +59,25 @@ 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 struct timespec ts = {0, 1000000000 / TIME_SPEED}; - nanosleep(&ts); - //usleep(1000000 / TIME_SPEED); + nanosleep(&ts, NULL); stgTime++; #else struct timespec ts = {0, 500000000}; - nanosleep(&ts); - //usleep(500000); + nanosleep(&ts, NULL); stgTime = time(NULL); #endif } @@ -83,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; @@ -108,13 +117,11 @@ return isTimerRunning; int stgUsleep(unsigned long t) { #ifdef STG_TIMER_DEBUG -struct timespec ts = {(t / TIME_SPEED) / 1000000, ((t / TIME_SPEED) % 1000000) * 1000}; -return nanosleep(&ts); -//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 -struct timespec ts = {t / 1000000, (t % 1000000) * 1000}; -return nanosleep(&ts); -//return usleep(t); +struct timespec ts = {static_cast(t / 1000000), static_cast((t % 1000000) * 1000)}; +return nanosleep(&ts, NULL); #endif } //-----------------------------------------------------------------------------