clock_getres.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * clock_getres() for uClibc
  3. *
  4. * Copyright (C) 2005 by Peter Kjellerstedt <pkj@axis.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU Library General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #define sysconf __sysconf
  22. #define _GNU_SOURCE
  23. #include "syscalls.h"
  24. #include <time.h>
  25. #include <unistd.h>
  26. #ifdef __NR_clock_getres
  27. _syscall2(int, clock_getres, clockid_t, clock_id, struct timespec*, res);
  28. #else
  29. int clock_getres(clockid_t clock_id, struct timespec* res)
  30. {
  31. long clk_tck;
  32. int retval = -1;
  33. switch (clock_id) {
  34. case CLOCK_REALTIME:
  35. if ((clk_tck = sysconf(_SC_CLK_TCK)) < 0)
  36. clk_tck = 100;
  37. res->tv_sec = 0;
  38. res->tv_nsec = 1000000000 / clk_tck;
  39. retval = 0;
  40. break;
  41. default:
  42. errno = EINVAL;
  43. break;
  44. }
  45. return retval;
  46. }
  47. #endif