mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 13:54:36 +00:00
This allows for workqueues to be started in user mode. No additional kernel objects or system calls are defined other than starting the workqueue in user mode; for permission purposes the embedded queue and thread objects are sufficient. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
14 lines
463 B
CMake
14 lines
463 B
CMake
zephyr_sources(thread_entry.c work_q.c)
|
|
zephyr_sources(fdtable.c)
|
|
add_subdirectory(crc)
|
|
add_subdirectory_ifdef(CONFIG_JSON_LIBRARY json)
|
|
if(NOT CONFIG_NATIVE_APPLICATION)
|
|
add_subdirectory(libc)
|
|
endif()
|
|
add_subdirectory_if_kconfig(ring_buffer)
|
|
add_subdirectory_if_kconfig(base64)
|
|
add_subdirectory(mempool)
|
|
add_subdirectory_ifdef(CONFIG_POSIX_API posix)
|
|
add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V1 cmsis_rtos_v1)
|
|
add_subdirectory(rbtree)
|