tst-clock_nanosleep.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* Copyright (C) 2003-2026 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #include <errno.h>
  15. #include <stdio.h>
  16. #include <unistd.h>
  17. #include <sys/time.h>
  18. #include <time.h>
  19. #include <intprops.h>
  20. #include <support/support.h>
  21. #include <support/check.h>
  22. /* Test that clock_nanosleep() does sleep. */
  23. static void
  24. clock_nanosleep_test (void)
  25. {
  26. /* Current time. */
  27. struct timeval tv1;
  28. gettimeofday (&tv1, NULL);
  29. struct timespec ts = { 1, 0 };
  30. TEMP_FAILURE_RETRY (clock_nanosleep (CLOCK_REALTIME, 0, &ts, &ts));
  31. /* At least one second must have passed. */
  32. struct timeval tv2;
  33. gettimeofday (&tv2, NULL);
  34. tv2.tv_sec -= tv1.tv_sec;
  35. tv2.tv_usec -= tv1.tv_usec;
  36. if (tv2.tv_usec < 0)
  37. --tv2.tv_sec;
  38. TEST_VERIFY (tv2.tv_sec >= 1);
  39. }
  40. static void
  41. clock_nanosleep_large_timeout (void)
  42. {
  43. support_create_timer (0, 100000000, false, NULL);
  44. struct timespec ts = { TYPE_MAXIMUM (time_t), 0 };
  45. int r = clock_nanosleep (CLOCK_REALTIME, 0, &ts, NULL);
  46. TEST_VERIFY (r == EINTR || r == EOVERFLOW);
  47. }
  48. static int
  49. do_test (void)
  50. {
  51. clock_nanosleep_test ();
  52. clock_nanosleep_large_timeout ();
  53. return 0;
  54. }
  55. #include <support/test-driver.c>