wait_q.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* wait queue for multiple threads on kernel objects */
  2. /*
  3. * Copyright (c) 2015 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_KERNEL_INCLUDE_WAIT_Q_H_
  8. #define ZEPHYR_KERNEL_INCLUDE_WAIT_Q_H_
  9. #include <kernel_structs.h>
  10. #include <sys/dlist.h>
  11. #include <sys/rb.h>
  12. #include <kernel/sched_priq.h>
  13. #include <timeout_q.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #ifdef CONFIG_WAITQ_SCALABLE
  18. #define _WAIT_Q_FOR_EACH(wq, thread_ptr) \
  19. RB_FOR_EACH_CONTAINER(&(wq)->waitq.tree, thread_ptr, base.qnode_rb)
  20. static inline void z_waitq_init(_wait_q_t *w)
  21. {
  22. w->waitq = (struct _priq_rb) {
  23. .tree = {
  24. .lessthan_fn = z_priq_rb_lessthan
  25. }
  26. };
  27. }
  28. static inline struct k_thread *z_waitq_head(_wait_q_t *w)
  29. {
  30. return (struct k_thread *)rb_get_min(&w->waitq.tree);
  31. }
  32. #else /* !CONFIG_WAITQ_SCALABLE: */
  33. #define _WAIT_Q_FOR_EACH(wq, thread_ptr) \
  34. SYS_DLIST_FOR_EACH_CONTAINER(&((wq)->waitq), thread_ptr, \
  35. base.qnode_dlist)
  36. static inline void z_waitq_init(_wait_q_t *w)
  37. {
  38. sys_dlist_init(&w->waitq);
  39. }
  40. static inline struct k_thread *z_waitq_head(_wait_q_t *w)
  41. {
  42. return (struct k_thread *)sys_dlist_peek_head(&w->waitq);
  43. }
  44. #endif /* !CONFIG_WAITQ_SCALABLE */
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif /* ZEPHYR_KERNEL_INCLUDE_WAIT_Q_H_ */