summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-14 01:56:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-14 01:56:13 +0000
commit8e0fe174fee43677b27613ed8d8695689c87f1d7 (patch)
treed98b3a09eb055adbc02219d07f05c5c21a77823d /nuttx/sched/Makefile
parent8b2c7f249a7a647a3d9fbb60bff0b4f83454fef5 (diff)
downloadpx4-nuttx-8e0fe174fee43677b27613ed8d8695689c87f1d7.tar.gz
px4-nuttx-8e0fe174fee43677b27613ed8d8695689c87f1d7.tar.bz2
px4-nuttx-8e0fe174fee43677b27613ed8d8695689c87f1d7.zip
Beginning to add on-demand paging logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2850 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index ec9923e1c..40392504c 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -139,10 +139,15 @@ ifeq ($(CONFIG_SCHED_WORKQUEUE),y)
WORK_SRCS = work_thread.c work_queue.c work_cancel.c
endif
+ifeq ($(CONFIG_PAGING),y)
+PGFILL_SRCS = pg_miss.c
+endif
+
IRQ_SRCS = irq_initialize.c irq_attach.c irq_dispatch.c irq_unexpectedisr.c
CSRCS = $(MISC_SRCS) $(TSK_SRCS) $(SCHED_SRCS) $(WDOG_SRCS) $(TIME_SRCS) \
- $(SEM_SRCS) $(TIMER_SRCS) $(WORK_SRCS) $(IRQ_SRCS)
+ $(SEM_SRCS) $(TIMER_SRCS) $(WORK_SRCS) $(PGFILL_SRCS) $(IRQ_SRCS)
+
ifneq ($(CONFIG_DISABLE_CLOCK),y)
CSRCS += $(CLOCK_SRCS)
endif