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:292

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:30

Menu path: (Top) → General Kernel Options → Wait queue priority algorithm

config WAITQ_DUMB
    bool "Simple linked-list wait_q"
    depends on <choice WAITQ_ALGORITHM: Wait queue priority 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.)