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:
parent
17ee0eb439
commit
564fd36c8e
5
compat.h
5
compat.h
@ -9,6 +9,7 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
|
||||||
#include "miner.h" // for timersub
|
#include "miner.h" // for timersub
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ static inline int nanosleep(const struct timespec *req, struct timespec *rem)
|
|||||||
struct timeval tstart;
|
struct timeval tstart;
|
||||||
DWORD msecs;
|
DWORD msecs;
|
||||||
|
|
||||||
gettimeofday(&tstart, NULL);
|
cgtime(&tstart);
|
||||||
msecs = (req->tv_sec * 1000) + ((999999 + req->tv_nsec) / 1000000);
|
msecs = (req->tv_sec * 1000) + ((999999 + req->tv_nsec) / 1000000);
|
||||||
|
|
||||||
if (SleepEx(msecs, true) == WAIT_IO_COMPLETION) {
|
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;
|
++tdone.tv_sec;
|
||||||
}
|
}
|
||||||
|
|
||||||
gettimeofday(&tnow, NULL);
|
cgtime(&tnow);
|
||||||
if (timercmp(&tnow, &tdone, >))
|
if (timercmp(&tnow, &tdone, >))
|
||||||
return 0;
|
return 0;
|
||||||
timersub(&tdone, &tnow, &tleft);
|
timersub(&tdone, &tnow, &tleft);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user