sched_priq.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SCHED_PRIQ_H_
  7. #define ZEPHYR_INCLUDE_SCHED_PRIQ_H_
  8. #include <sys/util.h>
  9. #include <sys/dlist.h>
  10. #include <sys/rb.h>
  11. /* Two abstractions are defined here for "thread priority queues".
  12. *
  13. * One is a "dumb" list implementation appropriate for systems with
  14. * small numbers of threads and sensitive to code size. It is stored
  15. * in sorted order, taking an O(N) cost every time a thread is added
  16. * to the list. This corresponds to the way the original _wait_q_t
  17. * abstraction worked and is very fast as long as the number of
  18. * threads is small.
  19. *
  20. * The other is a balanced tree "fast" implementation with rather
  21. * larger code size (due to the data structure itself, the code here
  22. * is just stubs) and higher constant-factor performance overhead, but
  23. * much better O(logN) scaling in the presence of large number of
  24. * threads.
  25. *
  26. * Each can be used for either the wait_q or system ready queue,
  27. * configurable at build time.
  28. */
  29. struct k_thread;
  30. struct k_thread *z_priq_dumb_best(sys_dlist_t *pq);
  31. void z_priq_dumb_remove(sys_dlist_t *pq, struct k_thread *thread);
  32. void z_priq_dumb_add(sys_dlist_t *pq, struct k_thread *thread);
  33. struct _priq_rb {
  34. struct rbtree tree;
  35. int next_order_key;
  36. };
  37. void z_priq_rb_add(struct _priq_rb *pq, struct k_thread *thread);
  38. void z_priq_rb_remove(struct _priq_rb *pq, struct k_thread *thread);
  39. struct k_thread *z_priq_rb_best(struct _priq_rb *pq);
  40. /* Traditional/textbook "multi-queue" structure. Separate lists for a
  41. * small number (max 32 here) of fixed priorities. This corresponds
  42. * to the original Zephyr scheduler. RAM requirements are
  43. * comparatively high, but performance is very fast. Won't work with
  44. * features like deadline scheduling which need large priority spaces
  45. * to represent their requirements.
  46. */
  47. struct _priq_mq {
  48. sys_dlist_t queues[32];
  49. unsigned int bitmask; /* bit 1<<i set if queues[i] is non-empty */
  50. };
  51. void z_priq_mq_add(struct _priq_mq *pq, struct k_thread *thread);
  52. void z_priq_mq_remove(struct _priq_mq *pq, struct k_thread *thread);
  53. struct k_thread *z_priq_mq_best(struct _priq_mq *pq);
  54. #endif /* ZEPHYR_INCLUDE_SCHED_PRIQ_H_ */