summaryrefslogtreecommitdiff
path: root/src/utils/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/timer.cpp')
-rw-r--r--src/utils/timer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/timer.cpp b/src/utils/timer.cpp
index 0e9a6a7e..a476ebec 100644
--- a/src/utils/timer.cpp
+++ b/src/utils/timer.cpp
@@ -39,10 +39,14 @@ void Timer::sleep()
if (!active) return;
uint64_t now = getTimeInMillisec();
if (now - lastpulse >= interval) return;
+#ifndef _WIN32
struct timespec req;
req.tv_sec = 0;
req.tv_nsec = (interval - (now - lastpulse)) * (1000 * 1000);
nanosleep(&req, 0);
+#else
+ Sleep(interval - (now - lastpulse));
+#endif
}
int Timer::poll()