summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-15 15:02:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-15 15:02:45 +0000
commit433550b1b9d8d67650ebfb79048ca442249dac0d (patch)
treedbdb17f72fa9a8f1d9fb9d1bac959c4277720f97 /nuttx/sched/Makefile
parentcd29825db2f81dd0fd51ea32ad44eb3236877555 (diff)
downloadpx4-nuttx-433550b1b9d8d67650ebfb79048ca442249dac0d.tar.gz
px4-nuttx-433550b1b9d8d67650ebfb79048ca442249dac0d.tar.bz2
px4-nuttx-433550b1b9d8d67650ebfb79048ca442249dac0d.zip
Completes demand paging core implementation
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2853 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 40392504c..b11511b65 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -1,7 +1,7 @@
############################################################################
# sched/Makefile
#
-# Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007-2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -140,7 +140,7 @@ WORK_SRCS = work_thread.c work_queue.c work_cancel.c
endif
ifeq ($(CONFIG_PAGING),y)
-PGFILL_SRCS = pg_miss.c
+PGFILL_SRCS = pg_miss.c pg_worker.c
endif
IRQ_SRCS = irq_initialize.c irq_attach.c irq_dispatch.c irq_unexpectedisr.c