1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-14 00:38:02 +00:00

Provide cgtimer_to_ms helper functions.

This commit is contained in:
Con Kolivas 2013-08-20 22:35:38 +10:00
parent 7d0c9b5060
commit 9dc63cee53
2 changed files with 20 additions and 0 deletions

19
util.c
View File

@ -921,6 +921,15 @@ void cgsleep_us_r(cgtimer_t *ts_start, int64_t us)
nanosleep_abstime(&ts_end);
}
static int timespec_to_ms(struct timespec *ts)
{
return ts->tv_sec * 1000 + ts->tv_nsec / 1000000;
}
int cgtimer_to_ms(cgtimer_t *cgt)
{
return timespec_to_ms(cgt);
}
#else
void cgtimer_time(cgtimer_t *ts_start)
{
@ -956,6 +965,16 @@ void cgsleep_us_r(cgtimer_t *ts_start, int64_t us)
cgsleep_ms_r(ts_start, ms);
}
static int timeval_to_ms(struct timeval *tv)
{
return tv->tv_sec * 1000 + tv->tv_usec / 1000;
}
int cgtimer_to_ms(cgtimer_t *cgt)
{
return timeval_to_ms(cgt);
}
#endif
void cgsleep_ms(int ms)

1
util.h
View File

@ -90,6 +90,7 @@ void cgtimer_time(cgtimer_t *ts_start);
#define cgsleep_prepare_r(ts_start) cgtimer_time(ts_start)
void cgsleep_ms_r(cgtimer_t *ts_start, int ms);
void cgsleep_us_r(cgtimer_t *ts_start, int64_t us);
int cgtimer_to_ms(cgtimer_t *cgt);
double us_tdiff(struct timeval *end, struct timeval *start);
double tdiff(struct timeval *end, struct timeval *start);
bool stratum_send(struct pool *pool, char *s, ssize_t len);