summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-20 13:19:07 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-20 13:19:07 +0000
commit610a6c9a4d50657d5f04d3247a229795e599be3b (patch)
treee03560a19826bb362dfe3b21743ff232b940e272 /nuttx/sched/Makefile
parent622a6cc576f1e5b97abcb78441ed04674217bfe6 (diff)
downloadpx4-nuttx-610a6c9a4d50657d5f04d3247a229795e599be3b.tar.gz
px4-nuttx-610a6c9a4d50657d5f04d3247a229795e599be3b.tar.bz2
px4-nuttx-610a6c9a4d50657d5f04d3247a229795e599be3b.zip
Fix for sem_timedwait.c
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3803 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 75d07676a..39a526eda 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -117,10 +117,10 @@ PTHREAD_SRCS += pthread_condtimedwait.c pthread_kill.c pthread_sigmask.c
endif
SEM_SRCS = sem_initialize.c sem_destroy.c sem_open.c sem_close.c sem_unlink.c \
- sem_wait.c sem_trywait.c sem_post.c sem_findnamed.c
+ sem_wait.c sem_trywait.c sem_timedwait.c sem_post.c sem_findnamed.c
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
-SEM_SRCS += sem_waitirq.c sem_timedwait.c
+SEM_SRCS += sem_waitirq.c
endif
ifeq ($(CONFIG_PRIORITY_INHERITANCE),y)