Loading ares/ares__timeval.c +1 −1 Original line number Diff line number Diff line Loading @@ -46,7 +46,7 @@ struct timeval ares__tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading lib/timeval.c +1 −1 Original line number Diff line number Diff line Loading @@ -52,7 +52,7 @@ struct timeval curlx_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading src/curlutil.c +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ struct timeval cutil_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading tests/libtest/testutil.c +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ struct timeval tutil_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading Loading
ares/ares__timeval.c +1 −1 Original line number Diff line number Diff line Loading @@ -46,7 +46,7 @@ struct timeval ares__tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading
lib/timeval.c +1 −1 Original line number Diff line number Diff line Loading @@ -52,7 +52,7 @@ struct timeval curlx_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading
src/curlutil.c +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ struct timeval cutil_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading
tests/libtest/testutil.c +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ struct timeval tutil_tvnow(void) */ struct timeval now; struct timespec tsnow; (void)clock_gettime(CLOCK_MONOTONIC, &tsnow) (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); now.tv_sec = tsnow.tv_sec; now.tv_usec = tsnow.tv_nsec / 1000; return now; Loading