CONFIG_WAITQ_DUMB¶
Simple linked-list wait_q
Type: bool
Help¶
When selected, the wait_q will be implemented with a
doubly-linked list.  Choose this if you expect to have only
a few threads blocked on any single IPC primitive.
Direct dependencies¶
<choice WAITQ_ALGORITHM: Wait queue priority algorithm>
(Includes any dependencies from ifs and menus.)
Kconfig definition¶
At <Zephyr Kernel>/Kconfig:282
Included via Kconfig:8 → Kconfig.zephyr:40
Menu path: (Top) → General Kernel Options → Wait queue priority algorithm
config WAITQ_DUMB
    bool "Simple linked-list wait_q"
    depends on <choice WAITQ_ALGORITHM>
    help
      When selected, the wait_q will be implemented with a
      doubly-linked list.  Choose this if you expect to have only
      a few threads blocked on any single IPC primitive.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)