#include <ctime>
#include <cstring>
+#include <csignal>
-#include "common.h"
+#include "stg/common.h"
static int nonstop;
static pthread_t thrStgTimer;
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
}
{
#ifdef STG_TIMER_DEBUG
struct timespec ts = {(t / TIME_SPEED) / 1000000, ((t / TIME_SPEED) % 1000000) * 1000};
-return nanosleep(&ts);
-//return usleep(t / TIME_SPEED);
+return nanosleep(&ts, NULL);
#else
struct timespec ts = {t / 1000000, (t % 1000000) * 1000};
-return nanosleep(&ts);
-//return usleep(t);
+return nanosleep(&ts, NULL);
#endif
}
//-----------------------------------------------------------------------------