2020-11-08 03:26:22 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2020-11-10 00:49:41 +00:00
|
|
|
// Replace gettimeofday() With clock_gettime()
|
2020-11-08 03:26:22 +00:00
|
|
|
int gettimeofday(struct timeval *tv, __attribute__((unused)) void *tz) {
|
|
|
|
struct timespec tp;
|
|
|
|
int ret = clock_gettime(CLOCK_MONOTONIC, &tp);
|
|
|
|
tv->tv_sec = tp.tv_sec;
|
|
|
|
tv->tv_usec = tp.tv_nsec * 0.001;
|
|
|
|
return ret;
|
|
|
|
}
|