about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/mq_send.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-03-03 12:11:49 +0100
committerFlorian Weimer <fweimer@redhat.com>2020-03-03 12:11:49 +0100
commit276e6080c8646c7f8a9139da8028f25c80d8bdca (patch)
treed3e12a8fc7e86e04108bbb42ab91b018868c0453 /sysdeps/unix/sysv/linux/mq_send.c
parent8d25a6765026162a245c94c5da1140d2f42bcd92 (diff)
downloadglibc-276e6080c8646c7f8a9139da8028f25c80d8bdca.tar.gz
glibc-276e6080c8646c7f8a9139da8028f25c80d8bdca.tar.xz
glibc-276e6080c8646c7f8a9139da8028f25c80d8bdca.zip
Linux: mq_* syscall numbers are always available
Due to the built-in tables, __NR_mq_getsetattr, __NR_mq_notify,
__NR_mq_open, __NR_mq_timedreceive, __NR_mq_timedsend, __NR_mq_unlink
are always defined.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/mq_send.c')
-rw-r--r--sysdeps/unix/sysv/linux/mq_send.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/mq_send.c b/sysdeps/unix/sysv/linux/mq_send.c
index 8e297e6d99..38f320d3ab 100644
--- a/sysdeps/unix/sysv/linux/mq_send.c
+++ b/sysdeps/unix/sysv/linux/mq_send.c
@@ -20,8 +20,6 @@
 #include <stddef.h>
 #include <sysdep.h>
 
-#ifdef __NR_mq_timedsend
-
 /* Add message pointed by MSG_PTR to message queue MQDES.  */
 int
 mq_send (mqd_t mqdes, const char *msg_ptr, size_t msg_len,
@@ -29,7 +27,3 @@ mq_send (mqd_t mqdes, const char *msg_ptr, size_t msg_len,
 {
   return __mq_timedsend (mqdes, msg_ptr, msg_len, msg_prio, NULL);
 }
-
-#else
-# include <rt/mq_send.c>
-#endif