summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 13:25:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 13:25:18 +0000
commit605bd84ced2cf37e267eccf604bdff1a985a65d8 (patch)
treec16c8b2b4e77974763bc6df44c2c116eac67f454 /nuttx/sched/Makefile
parenta300116bf7139941033b6d36dc3814af9d1e67c9 (diff)
downloadpx4-nuttx-605bd84ced2cf37e267eccf604bdff1a985a65d8.tar.gz
px4-nuttx-605bd84ced2cf37e267eccf604bdff1a985a65d8.tar.bz2
px4-nuttx-605bd84ced2cf37e267eccf604bdff1a985a65d8.zip
Added mq_timedsend() and mq_timedreceive()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@166 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 1f6ec2384..50992734a 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -69,7 +69,9 @@ SIGNAL_SRCS = sig_initialize.c \
sig_unmaskpendingsignal.c sig_removependingsignal.c \
sig_releasependingsignal.c sig_lowest.c sig_mqnotempty.c \
sig_cleanup.c sig_received.c sig_deliver.c
-MQUEUE_SRCS = mq_open.c mq_close.c mq_unlink.c mq_send.c mq_receive.c \
+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
ifneq ($(CONFIG_DISABLE_SIGNALS),y)