time.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_TIME_H_
  7. #define ZEPHYR_INCLUDE_POSIX_TIME_H_
  8. /* Read standard header. This may find <posix/time.h> since they
  9. * refer to the same file when include/posix is in the search path.
  10. */
  11. #include <time.h>
  12. #ifdef CONFIG_NEWLIB_LIBC
  13. /* Kludge to support outdated newlib version as used in SDK 0.10 for Xtensa */
  14. #include <newlib.h>
  15. #ifdef __NEWLIB__
  16. /* Newever Newlib 3.x+ */
  17. #include <sys/timespec.h>
  18. #else /* __NEWLIB__ */
  19. /* Workaround for older Newlib 2.x, as used by Xtensa. It lacks sys/_timeval.h,
  20. * so mimic it here.
  21. */
  22. #include <sys/types.h>
  23. #ifndef __timespec_defined
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. struct timespec {
  28. time_t tv_sec;
  29. long tv_nsec;
  30. };
  31. struct itimerspec {
  32. struct timespec it_interval; /* Timer interval */
  33. struct timespec it_value; /* Timer expiration */
  34. };
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /* __timespec_defined */
  39. #endif /* __NEWLIB__ */
  40. #else /* CONFIG_NEWLIB_LIBC */
  41. /* Not Newlib */
  42. # ifdef CONFIG_ARCH_POSIX
  43. # include <bits/types/struct_timespec.h>
  44. # include <bits/types/struct_itimerspec.h>
  45. # else
  46. # include <sys/timespec.h>
  47. # endif
  48. #endif /* CONFIG_NEWLIB_LIBC */
  49. #include <kernel.h>
  50. #include <errno.h>
  51. #include "posix_types.h"
  52. #include <posix/signal.h>
  53. #ifdef __cplusplus
  54. extern "C" {
  55. #endif
  56. #ifndef CLOCK_REALTIME
  57. #define CLOCK_REALTIME 1
  58. #endif
  59. #ifndef CLOCK_MONOTONIC
  60. #define CLOCK_MONOTONIC 4
  61. #endif
  62. #define NSEC_PER_MSEC (NSEC_PER_USEC * USEC_PER_MSEC)
  63. #ifndef TIMER_ABSTIME
  64. #define TIMER_ABSTIME 4
  65. #endif
  66. static inline int32_t _ts_to_ms(const struct timespec *to)
  67. {
  68. return (to->tv_sec * MSEC_PER_SEC) + (to->tv_nsec / NSEC_PER_MSEC);
  69. }
  70. #ifdef CONFIG_ARCH_POSIX
  71. int clock_gettime(clockid_t clock_id, struct timespec *ts);
  72. #else
  73. __syscall int clock_gettime(clockid_t clock_id, struct timespec *ts);
  74. #endif /* CONFIG_ARCH_POSIX */
  75. int clock_settime(clockid_t clock_id, const struct timespec *ts);
  76. /* Timer APIs */
  77. int timer_create(clockid_t clockId, struct sigevent *evp, timer_t *timerid);
  78. int timer_delete(timer_t timerid);
  79. int timer_gettime(timer_t timerid, struct itimerspec *its);
  80. int timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
  81. struct itimerspec *ovalue);
  82. int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #ifndef CONFIG_ARCH_POSIX
  87. #include <syscalls/time.h>
  88. #endif /* CONFIG_ARCH_POSIX */
  89. #else /* ZEPHYR_INCLUDE_POSIX_TIME_H_ */
  90. /* Read the toolchain header when <posix/time.h> finds itself on the
  91. * first attempt.
  92. */
  93. #include_next <time.h>
  94. #endif /* ZEPHYR_INCLUDE_POSIX_TIME_H_ */