This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
65b15c3226
zephyr
/
tests
/
kernel
/
queue
/
prj_poll.conf
6 lines
94 B
Plaintext
Raw
Normal View
History
Unescape
Escape
queue: Use k_poll if enabled This makes use of POLL_EVENT in case k_poll is enabled which is preferable over wait_q as that allows objects to be removed for the data_q at any time. Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
2017-07-13 17:43:59 +08:00
CONFIG_ZTEST=y
CONFIG_IRQ_OFFLOAD=y
CONFIG_POLL=y
k_queue: allow user mode access via allocators User mode may now use queue objects. Instead of embedding the kernel's linked list information directly in the data item, a container struct is allocated from the caller's resource pool which is then added to the queue. The new sflist type is now used to store a flag indicating whether a data item needs to be freed when removed from the queue. FIFO/LIFOs are derived from k_queues and have had allocator functions added. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2018-04-28 04:21:22 +08:00
CONFIG_USERSPACE=y
CONFIG_DYNAMIC_OBJECTS=y