mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-04 14:45:22 +00:00
The _thread_entry() is not really a part of the kernel but a part of the zephyr's C runtime support library. Hence moving just the function to lib/thread_entry.c Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
12 lines
362 B
CMake
12 lines
362 B
CMake
zephyr_sources(thread_entry.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_PTHREAD_IPC posix)
|
|
add_subdirectory(rbtree)
|