diff options
author | Yang Tse <yangsita@gmail.com> | 2008-07-10 07:16:45 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-07-10 07:16:45 +0000 |
commit | d8f109176c909c3cca72c6b23d557b9a30f0c666 (patch) | |
tree | fe6d960557023d27610aa51f176b10243de9b11f /tests | |
parent | bbb1b99ce1fdc28bbd6a48d192f65733eed33ecc (diff) |
fallback to gettimeofday when monotonic clock is unavailable at run-time
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/testutil.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/tests/libtest/testutil.c b/tests/libtest/testutil.c index 435b30e09..573e6faed 100644 --- a/tests/libtest/testutil.c +++ b/tests/libtest/testutil.c @@ -54,9 +54,24 @@ struct timeval tutil_tvnow(void) */ struct timeval now; struct timespec tsnow; - (void)clock_gettime(CLOCK_MONOTONIC, &tsnow); - now.tv_sec = tsnow.tv_sec; - now.tv_usec = tsnow.tv_nsec / 1000; + if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { + now.tv_sec = tsnow.tv_sec; + now.tv_usec = tsnow.tv_nsec / 1000; + } + /* + ** Even when the configure process has truly detected monotonic clock + ** availability, it might happen that it is not actually available at + ** run-time. When this occurs simply fallback to other time source. + */ +#ifdef HAVE_GETTIMEOFDAY + else + (void)gettimeofday(&now, NULL); +#else + else { + now.tv_sec = (long)time(NULL); + now.tv_usec = 0; + } +#endif return now; } |