summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-05 22:58:36 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-05 22:58:36 +0000
commit7d5e90d121078be23986be35252a4612d2f39f68 (patch)
treead18d357e3560b507d64f9d64a173f3e2f161ab7 /nuttx/sched/Makefile
parent4e4e59b8d249ed809a8a97072f0f7efcbaf4bc89 (diff)
downloadpx4-nuttx-7d5e90d121078be23986be35252a4612d2f39f68.tar.gz
px4-nuttx-7d5e90d121078be23986be35252a4612d2f39f68.tar.bz2
px4-nuttx-7d5e90d121078be23986be35252a4612d2f39f68.zip
Incorporate the work thread
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2230 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 3a2512662..ec9923e1c 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -38,7 +38,7 @@
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
-MISC_SRCS = os_start.c get_errno_ptr.c \
+MISC_SRCS = os_start.c get_errno_ptr.c sched_garbage.c \
sched_setupstreams.c sched_getfiles.c sched_getsockets.c sched_getstreams.c \
sched_setupidlefiles.c sched_setuptaskfiles.c sched_setuppthreadfiles.c \
sched_releasefiles.c
@@ -136,7 +136,7 @@ TIMER_SRCS = timer_initialize.c timer_create.c timer_delete.c timer_getoverrun.c
endif
ifeq ($(CONFIG_SCHED_WORKQUEUE),y)
-WORK_SRCS = work_queue.c work_cancel.c
+WORK_SRCS = work_thread.c work_queue.c work_cancel.c
endif
IRQ_SRCS = irq_initialize.c irq_attach.c irq_dispatch.c irq_unexpectedisr.c