summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-10-02 00:55:32 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-10-02 00:55:32 +0000
commit145c74dbfc283479225bdeec6d465bc52cd2aa55 (patch)
tree899e77aee2d18efebb5650abff18730895f055d1 /nuttx/sched/Makefile
parent4f0f900f2da8a2f1ddd7ef6f8031cd2ffed30a5f (diff)
downloadpx4-nuttx-145c74dbfc283479225bdeec6d465bc52cd2aa55.tar.gz
px4-nuttx-145c74dbfc283479225bdeec6d465bc52cd2aa55.tar.bz2
px4-nuttx-145c74dbfc283479225bdeec6d465bc52cd2aa55.zip
Prep for 5.11 Releasenuttx-5.11
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2960 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index b11511b65..31e09f2aa 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -89,7 +89,10 @@ MQUEUE_SRCS = mq_open.c mq_close.c mq_unlink.c \
mq_send.c mq_timedsend.c mq_sndinternal.c \
mq_receive.c mq_timedreceive.c mq_rcvinternal.c \
mq_setattr.c mq_getattr.c mq_initialize.c mq_descreate.c \
- mq_findnamed.c mq_msgfree.c mq_msgqfree.c mq_waitirq.c
+ mq_findnamed.c mq_msgfree.c mq_msgqfree.c
+ifneq ($(CONFIG_DISABLE_SIGNALS),y)
+MQUEUE_SRCS += mq_waitirq.c
+endif
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
MQUEUE_SRCS += mq_notify.c
endif
@@ -125,7 +128,10 @@ endif
SEM_SRCS = sem_initialize.c sem_init.c sem_destroy.c\
sem_open.c sem_close.c sem_unlink.c \
sem_wait.c sem_trywait.c sem_post.c sem_getvalue.c \
- sem_waitirq.c sem_findnamed.c
+ sem_findnamed.c
+ifneq ($(CONFIG_DISABLE_SIGNALS),y)
+SEM_SRCS += sem_waitirq.c
+endif
ifeq ($(CONFIG_PRIORITY_INHERITANCE),y)
SEM_SRCS += sem_holder.c
endif