summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-05-31 17:13:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-05-31 17:13:08 +0000
commit98a4a5029768be0c75d6d51fca4e73c98de4b7fa (patch)
tree75df8870063f23c8cb7d4d322575b6b2c7021065 /nuttx/sched/Makefile
parent52bbc6ee28f2ae7faef6a430e86c881376ff3bfb (diff)
downloadpx4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.tar.gz
px4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.tar.bz2
px4-nuttx-98a4a5029768be0c75d6d51fca4e73c98de4b7fa.zip
Add support for recursive mutexes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@753 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index ad5286f01..461bc56d0 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -105,6 +105,9 @@ PTHREAD_SRCS = pthread_attrinit.c pthread_attrdestroy.c \
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
PTHREAD_SRCS += pthread_condtimedwait.c pthread_kill.c pthread_sigmask.c
endif
+ifeq ($(CONFIG_MUTEX_TYPES),y)
+PTHREAD_SRCS += pthread_mutexattrsettype.c pthread_mutexattrgettype.c pthread_mutexattrverifytype.c
+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 \