From cfe1298282b9b49f11c0002b1f9cc98da2ad0065 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Wed, 23 Mar 2011 15:24:46 +0100 Subject: librt: provide missing prototypes for mq_timedreceive,mq_timedsend If ADVANCED_REALTIME is disabled, these prototypes are missing and librt_hidden_proto() fails. Makefile.in: added a comment, we build mq_timedreceive/mq_timedsend on NPTL even if ADVANCED_REALTIME is disabled. Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- librt/mq_send.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'librt/mq_send.c') diff --git a/librt/mq_send.c b/librt/mq_send.c index 78308d8d9..5e50d1a19 100644 --- a/librt/mq_send.c +++ b/librt/mq_send.c @@ -10,13 +10,17 @@ #include #ifdef __UCLIBC_HAS_THREADS_NATIVE__ +# ifndef __UCLIBC_HAS_ADVANCED_REALTIME__ +extern int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, + unsigned int msg_prio, const struct timespec *abs_timeout); +# endif librt_hidden_proto(mq_timedsend) #else # define __NR___syscall_mq_timedsend __NR_mq_timedsend static _syscall5(int, __syscall_mq_timedsend, int, mqdes, const char *, msg_ptr, size_t, msg_len, unsigned int, - msg_prio, const void *, abs_timeout); + msg_prio, const void *, abs_timeout) # ifdef __UCLIBC_HAS_ADVANCED_REALTIME__ /* -- cgit v1.2.3