aboutsummaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-25 20:00:37 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-25 20:00:37 +0000
commitfdaa22ed2d565e49983e956bc056f1e0797bd9a9 (patch)
tree81d2bc2ed6e039cb6e9f7228846608b2d7d4fa85 /nuttx/sched/Makefile
parent80904539e63681b2dca74e3978effb17f0c071b0 (diff)
downloadpx4-firmware-fdaa22ed2d565e49983e956bc056f1e0797bd9a9.tar.gz
px4-firmware-fdaa22ed2d565e49983e956bc056f1e0797bd9a9.tar.bz2
px4-firmware-fdaa22ed2d565e49983e956bc056f1e0797bd9a9.zip
Add logic to send SIGCHLD to all members of a task group
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5564 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 6a710ff95..bbf513f34 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -87,7 +87,11 @@ SCHED_SRCS += sched_waitid.c sched_wait.c
endif
endif
-GRP_SRCS = group_create.c group_join.c group_leave.c
+GRP_SRCS = group_create.c group_join.c group_leave.c
+
+ifneq ($(CONFIG_DISABLE_SIGNALS),y)
+GRP_SRCS += group_signal.c
+endif
ENV_SRCS = env_getenvironptr.c env_dup.c env_share.c env_release.c
ENV_SRCS += env_findvar.c env_removevar.c