X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgettime.c;h=929dece315e2400c6067c7df0b7bd7b3b7259abc;hb=1d113b5a2cb7cbbea65d7ed9d7278880701fc742;hp=7b5a75aaf69185d48d56c8abd631c0ac155f16d0;hpb=51907d763eb8f5ecad76c0bc88dabf7e0e528b6b;p=gnulib.git diff --git a/lib/gettime.c b/lib/gettime.c index 7b5a75aaf..929dece31 100644 --- a/lib/gettime.c +++ b/lib/gettime.c @@ -1,5 +1,5 @@ /* gettime -- get the system clock - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,24 +23,31 @@ #include "timespec.h" -/* Get the system time. */ +/* Get the system time into *TS. */ -int +void gettime (struct timespec *ts) { -#if defined CLOCK_REALTIME && HAVE_CLOCK_SETTIME +#if HAVE_NANOTIME + nanotime (ts); +#else + +# if defined CLOCK_REALTIME && HAVE_CLOCK_GETTIME if (clock_gettime (CLOCK_REALTIME, ts) == 0) - return 0; -#endif + return; +# endif +# if HAVE_GETTIMEOFDAY { struct timeval tv; - int r = gettimeofday (&tv, 0); - if (r == 0) - { - ts->tv_sec = tv.tv_sec; - ts->tv_nsec = tv.tv_usec * 1000; - } - return r; + gettimeofday (&tv, NULL); + ts->tv_sec = tv.tv_sec; + ts->tv_nsec = tv.tv_usec * 1000; } +# else + ts->tv_sec = time (NULL); + ts->tv_nsec = 0; +# endif + +#endif }