kernel: remove old work queue implementation

Now that the old API has been reimplemented with the new API remove
the old implementation and its tests.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
Peter Bigot 2020-11-24 16:47:47 -06:00 committed by Anas Nashif
commit b706a5e999
16 changed files with 6 additions and 2225 deletions

View file

@ -23,6 +23,7 @@ list(APPEND kernel_files
thread.c
version.c
condvar.c
work.c
smp.c
banner.c
)
@ -44,9 +45,6 @@ set_target_properties(
__ZEPHYR_SUPERVISOR__
)
target_sources_ifdef(CONFIG_KERNEL_WORK1 kernel PRIVATE work_q.c)
target_sources_ifdef(CONFIG_KERNEL_WORK2 kernel PRIVATE work.c)
target_sources_ifdef(CONFIG_STACK_CANARIES kernel PRIVATE compiler_stack_protect.c)
target_sources_ifdef(CONFIG_SYS_CLOCK_EXISTS kernel PRIVATE timeout.c timer.c)
target_sources_ifdef(CONFIG_ATOMIC_OPERATIONS_C kernel PRIVATE atomic_c.c)