summaryrefslogtreecommitdiff
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
commita8b43ddae28ff445f9b240d5b271058d80384703 (patch)
tree81d2bc2ed6e039cb6e9f7228846608b2d7d4fa85 /nuttx/sched/Makefile
parente1ff898b022bc77ede6ba57e8ecb46f0af306149 (diff)
downloadpx4-nuttx-a8b43ddae28ff445f9b240d5b271058d80384703.tar.gz
px4-nuttx-a8b43ddae28ff445f9b240d5b271058d80384703.tar.bz2
px4-nuttx-a8b43ddae28ff445f9b240d5b271058d80384703.zip
Add logic to send SIGCHLD to all members of a task group
git-svn-id: svn://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