diff options
Diffstat (limited to 'libglusterfs/src/timespec.c')
| -rw-r--r-- | libglusterfs/src/timespec.c | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/libglusterfs/src/timespec.c b/libglusterfs/src/timespec.c index 1b7cff37eb6..96cef5c6f07 100644 --- a/libglusterfs/src/timespec.c +++ b/libglusterfs/src/timespec.c @@ -70,6 +70,28 @@ timespec_now(struct timespec *ts)  }  void +timespec_now_realtime(struct timespec *ts) +{ +#if defined GF_LINUX_HOST_OS || defined GF_SOLARIS_HOST_OS ||                  \ +    defined GF_BSD_HOST_OS +    if (0 == clock_gettime(CLOCK_REALTIME, ts)) { +        return; +    } +#endif + +    /* Fall back to gettimeofday()*/ +    struct timeval tv = { +        0, +    }; +    if (0 == gettimeofday(&tv, NULL)) { +        TIMEVAL_TO_TIMESPEC(&tv, ts); +        return; +    } + +    return; +} + +void  timespec_adjust_delta(struct timespec *ts, struct timespec delta)  {      ts->tv_nsec = ((ts->tv_nsec + delta.tv_nsec) % 1000000000);  | 
