--- libelwix/src/time.c 2022/12/01 19:50:46 1.5.72.1 +++ libelwix/src/time.c 2022/12/01 19:56:58 1.5.72.2 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: time.c,v 1.5.72.1 2022/12/01 19:50:46 misho Exp $ +* $Id: time.c,v 1.5.72.2 2022/12/01 19:56:58 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -288,10 +288,10 @@ time_rdtsc(void) struct timespec ts = { 0, 0LL }; #ifndef CLOCK_UPTIME_PRECISE - clock_gettime(CLOCK_MONOTONIC, &ts); -#else - clock_gettime(CLOCK_UPTIME_PRECISE, &ts); +#define CLOCK_UPTIME_PRECISE CLOCK_MONOTONIC #endif + clock_gettime(CLOCK_UPTIME_PRECISE, &ts); + return ((uint64_t) ts.tv_sec * 1000000000 + ts.tv_nsec); #endif }