1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 04:24:19 +00:00

Use cgtime in compat.h

This commit is contained in:
Con Kolivas 2013-04-21 19:10:37 +10:00
parent 17ee0eb439
commit 564fd36c8e

View File

@ -9,6 +9,7 @@
#include <sys/time.h>
#include "miner.h" // for timersub
#include "util.h"
#include <windows.h>
@ -18,7 +19,7 @@ static inline int nanosleep(const struct timespec *req, struct timespec *rem)
struct timeval tstart;
DWORD msecs;
gettimeofday(&tstart, NULL);
cgtime(&tstart);
msecs = (req->tv_sec * 1000) + ((999999 + req->tv_nsec) / 1000000);
if (SleepEx(msecs, true) == WAIT_IO_COMPLETION) {
@ -31,7 +32,7 @@ static inline int nanosleep(const struct timespec *req, struct timespec *rem)
++tdone.tv_sec;
}
gettimeofday(&tnow, NULL);
cgtime(&tnow);
if (timercmp(&tnow, &tdone, >))
return 0;
timersub(&tdone, &tnow, &tleft);