clock_settime.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * clock_settime() 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 _GNU_SOURCE
  22. #include "syscalls.h"
  23. #include <time.h>
  24. #include <sys/time.h>
  25. #ifdef __NR_clock_settime
  26. _syscall2(int, clock_settime, clockid_t, clock_id, const struct timespec*, tp);
  27. #else
  28. int clock_settime(clockid_t clock_id, const struct timespec* tp)
  29. {
  30. struct timeval tv;
  31. int retval = -1;
  32. if (tp->tv_nsec < 0 || tp->tv_nsec >= 1000000000) {
  33. errno = EINVAL;
  34. return -1;
  35. }
  36. switch (clock_id) {
  37. case CLOCK_REALTIME:
  38. TIMESPEC_TO_TIMEVAL(&tv, tp);
  39. retval = settimeofday(&tv, NULL);
  40. break;
  41. default:
  42. errno = EINVAL;
  43. break;
  44. }
  45. return retval;
  46. }
  47. #endif