timeout_q.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_KERNEL_INCLUDE_TIMEOUT_Q_H_
  7. #define ZEPHYR_KERNEL_INCLUDE_TIMEOUT_Q_H_
  8. /**
  9. * @file
  10. * @brief timeout queue for threads on kernel objects
  11. */
  12. #include <kernel.h>
  13. #include <stdbool.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #ifdef CONFIG_SYS_CLOCK_EXISTS
  18. static inline void z_init_timeout(struct _timeout *to)
  19. {
  20. sys_dnode_init(&to->node);
  21. }
  22. void z_add_timeout(struct _timeout *to, _timeout_func_t fn,
  23. k_timeout_t timeout);
  24. int z_abort_timeout(struct _timeout *to);
  25. static inline bool z_is_inactive_timeout(const struct _timeout *to)
  26. {
  27. return !sys_dnode_is_linked(&to->node);
  28. }
  29. static inline void z_init_thread_timeout(struct _thread_base *thread_base)
  30. {
  31. z_init_timeout(&thread_base->timeout);
  32. }
  33. extern void z_thread_timeout(struct _timeout *timeout);
  34. static inline void z_add_thread_timeout(struct k_thread *thread, k_timeout_t ticks)
  35. {
  36. z_add_timeout(&thread->base.timeout, z_thread_timeout, ticks);
  37. }
  38. static inline int z_abort_thread_timeout(struct k_thread *thread)
  39. {
  40. return z_abort_timeout(&thread->base.timeout);
  41. }
  42. int32_t z_get_next_timeout_expiry(void);
  43. void z_set_timeout_expiry(int32_t ticks, bool is_idle);
  44. k_ticks_t z_timeout_remaining(const struct _timeout *timeout);
  45. #else
  46. /* Stubs when !CONFIG_SYS_CLOCK_EXISTS */
  47. #define z_init_thread_timeout(thread_base) do {} while (false)
  48. #define z_abort_thread_timeout(to) (0)
  49. #define z_is_inactive_timeout(to) 0
  50. #define z_get_next_timeout_expiry() ((int32_t) K_TICKS_FOREVER)
  51. #define z_set_timeout_expiry(ticks, is_idle) do {} while (false)
  52. static inline void z_add_thread_timeout(struct k_thread *thread, k_timeout_t ticks)
  53. {
  54. ARG_UNUSED(thread);
  55. ARG_UNUSED(ticks);
  56. }
  57. #endif
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif /* ZEPHYR_KERNEL_INCLUDE_TIMEOUT_Q_H_ */