git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed rlm_stg removing broken by previous patch.
[stg.git]
/
projects
/
stargazer
/
stg_timer.cpp
diff --git
a/projects/stargazer/stg_timer.cpp
b/projects/stargazer/stg_timer.cpp
index b17153cf6eed25af3bbcd54788db52a7d2e9a2b8..235c669e0df09dcea32c31d94e9b5347932b88ff 100644
(file)
--- a/
projects/stargazer/stg_timer.cpp
+++ b/
projects/stargazer/stg_timer.cpp
@@
-2,8
+2,9
@@
#include <ctime>
#include <cstring>
#include <ctime>
#include <cstring>
+#include <csignal>
-#include "common.h"
+#include "
stg/
common.h"
static int nonstop;
static pthread_t thrStgTimer;
static int nonstop;
static pthread_t thrStgTimer;
@@
-54,21
+55,25
@@
switch (START_TIME)
stgTime = mktime(<);
break;
}
stgTime = mktime(<);
break;
}
+#else
+stgTime = time(NULL);
#endif
#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};
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};
stgTime++;
#else
struct timespec ts = {0, 500000000};
- nanosleep(&ts);
- //usleep(500000);
+ nanosleep(&ts, NULL);
stgTime = time(NULL);
#endif
}
stgTime = time(NULL);
#endif
}
@@
-109,12
+114,10
@@
int stgUsleep(unsigned long t)
{
#ifdef STG_TIMER_DEBUG
struct timespec ts = {(t / TIME_SPEED) / 1000000, ((t / TIME_SPEED) % 1000000) * 1000};
{
#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};
#else
struct timespec ts = {t / 1000000, (t % 1000000) * 1000};
-return nanosleep(&ts);
-//return usleep(t);
+return nanosleep(&ts, NULL);
#endif
}
//-----------------------------------------------------------------------------
#endif
}
//-----------------------------------------------------------------------------