/* * clock_gettime() for uClibc * * Copyright (C) 2003 by Justus Pendleton * Copyright (C) 2005 by Peter Kjellerstedt * Copyright (C) 2000-2006 Erik Andersen * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include #include #include #ifdef __NR_clock_gettime _syscall2(int, clock_gettime, clockid_t, clock_id, struct timespec*, tp) #else /* libc_hidden_proto(gettimeofday) */ int clock_gettime(clockid_t clock_id, struct timespec* tp) { struct timeval tv; int retval = -1; switch (clock_id) { case CLOCK_REALTIME: retval = gettimeofday(&tv, NULL); if (retval == 0) { TIMEVAL_TO_TIMESPEC(&tv, tp); } break; default: errno = EINVAL; break; } return retval; } #endif