aboutsummaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-22 23:42:51 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-22 23:42:51 +0000
commit336f91b4e6b029e4fd76783931e3d6bd6b879d5f (patch)
tree43a56e959c8cf4d0fbc09a2a08755a9d007c45d1 /nuttx/sched/Makefile
parent7dad51762decebe5d104fe7dad9eb23680cabd23 (diff)
downloadpx4-firmware-336f91b4e6b029e4fd76783931e3d6bd6b879d5f.tar.gz
px4-firmware-336f91b4e6b029e4fd76783931e3d6bd6b879d5f.tar.bz2
px4-firmware-336f91b4e6b029e4fd76783931e3d6bd6b879d5f.zip
lpc1788 update from Rommel Marcelo; Beginning of logic to retain child exit status
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5549 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 38d3e047f..1ad244450 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -74,7 +74,10 @@ SCHED_SRCS += sched_reprioritize.c
endif
ifeq ($(CONFIG_SCHED_HAVE_PARENT),y)
-SCHED_SRCS += task_reparent.c
+SCHED_SRCS += task_reparent.c
+ifeq ($(CONFIG_SCHED_CHILD_STATUS),y)
+SCHED_SRCS += task_childstatus.c
+endif
endif
ifeq ($(CONFIG_SCHED_WAITPID),y)