summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
commit7b06c73d1d766cd3376be29dccbd28a16e3f385b (patch)
tree20b00664065816849ca8f29e46281759085270ba /nuttx/sched/Makefile
parenteb573ac290c8f1a6bcb0816c8552ca88278cda11 (diff)
downloadpx4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.gz
px4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.bz2
px4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.zip
Move work queue logic from sched/ to libc/wqueue. It is not core logic and will be extended to support user-space work queues
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5711 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index ffb6e0004..1292eb449 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -175,10 +175,6 @@ TIMER_SRCS += timer_initialize.c timer_create.c timer_delete.c timer_getoverrun.
TIMER_SRCS += timer_gettime.c timer_settime.c timer_release.c
endif
-ifeq ($(CONFIG_SCHED_WORKQUEUE),y)
-WORK_SRCS = work_thread.c work_queue.c work_cancel.c work_signal.c
-endif
-
ifeq ($(CONFIG_PAGING),y)
PGFILL_SRCS = pg_miss.c pg_worker.c
endif
@@ -189,7 +185,7 @@ KMM_SRCS = kmm_initialize.c kmm_addregion.c kmm_semaphore.c
KMM_SRCS = kmm_kmalloc.c kmm_kzalloc.c kmm_krealloc.c kmm_kfree.c
CSRCS = $(MISC_SRCS) $(TSK_SRCS) $(GRP_SRCS) $(SCHED_SRCS) $(WDOG_SRCS)
-CSRCS += $(TIME_SRCS) $(SEM_SRCS) $(TIMER_SRCS) $(WORK_SRCS) $(PGFILL_SRCS)
+CSRCS += $(TIME_SRCS) $(SEM_SRCS) $(TIMER_SRCS) $(PGFILL_SRCS)
CSRCS += $(IRQ_SRCS)
ifneq ($(CONFIG_DISABLE_CLOCK),y)