From 145c74dbfc283479225bdeec6d465bc52cd2aa55 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 2 Oct 2010 00:55:32 +0000 Subject: Prep for 5.11 Release git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2960 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'nuttx/sched/Makefile') 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 -- cgit v1.2.3