diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 04:57:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 04:57:09 +0000 |
commit | ad0e8eb0a565a44fe9616354d4e7556c3df9ae76 (patch) | |
tree | c74ddbeeded7e73a8ec30de6a3387bea066791af /sysdeps/unix/clock_gettime.c | |
parent | 1e543c0cc620324b04da6891b9b7848da8704411 (diff) | |
download | glibc-ad0e8eb0a565a44fe9616354d4e7556c3df9ae76.tar.gz glibc-ad0e8eb0a565a44fe9616354d4e7556c3df9ae76.tar.xz glibc-ad0e8eb0a565a44fe9616354d4e7556c3df9ae76.zip |
Update.
2003-03-02 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _POSIX_MONOTONIC_CLOCK. * linuxthreads/sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
Diffstat (limited to 'sysdeps/unix/clock_gettime.c')
-rw-r--r-- | sysdeps/unix/clock_gettime.c | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/sysdeps/unix/clock_gettime.c b/sysdeps/unix/clock_gettime.c index 5dc329e1c0..4c26a370e6 100644 --- a/sysdeps/unix/clock_gettime.c +++ b/sysdeps/unix/clock_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -46,12 +46,23 @@ clock_gettime (clockid_t clock_id, struct timespec *tp) switch (clock_id) { +#define HANDLE_REALTIME \ + do { \ + retval = gettimeofday (&tv, NULL); \ + if (retval == 0) \ + /* Convert into `timespec'. */ \ + TIMEVAL_TO_TIMESPEC (&tv, tp); \ + } while (0) + +#ifdef SYSDEP_GETTIME + SYSDEP_GETTIME; +#endif + +#ifndef HANDLED_REALTIME case CLOCK_REALTIME: - retval = gettimeofday (&tv, NULL); - if (retval == 0) - /* Convert into `timespec'. */ - TIMEVAL_TO_TIMESPEC (&tv, tp); + HANDLE_REALTIME; break; +#endif #if HP_TIMING_AVAIL case CLOCK_PROCESS_CPUTIME_ID: |