From dd3c89f99cf911345abd1781be699a73f699aa00 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 5 Jul 1998 15:24:05 +0000 Subject: Update. 1998-07-05 Ulrich Drepper * sysdeps/unix/sysv/linux/__sendmsg.S: Define function as __syscall_sendmsg. * sysdeps/unix/sysv/linux/__recvmsg.S: Define function as __syscall_recvmsg. * sysdeps/unix/sysv/linux/recvmsg.c: Define function as __libc_recvmsg and make __recvmsg and recvmsg weak aliases. * sysdeps/unix/sysv/linux/sendmsg.c: Likewise for sendmsg. * sysdeps/unix/sysv/linux/alpha/syscalls.list: Define __syscall_recvmsg and __syscall_sendmsg. --- sysdeps/unix/sysv/linux/sendmsg.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'sysdeps/unix/sysv/linux/sendmsg.c') diff --git a/sysdeps/unix/sysv/linux/sendmsg.c b/sysdeps/unix/sysv/linux/sendmsg.c index 8902530c2b..bc12b051e7 100644 --- a/sysdeps/unix/sysv/linux/sendmsg.c +++ b/sysdeps/unix/sysv/linux/sendmsg.c @@ -32,12 +32,12 @@ struct __kernel_ucred __kernel_gid_t gid; }; -extern int __sendmsg (int, const struct msghdr *, int); +extern int __syscall_sendmsg (int, const struct msghdr *, int); /* Send a message described by MESSAGE on socket FD. Returns the number of bytes sent, or -1 for errors. */ int -sendmsg (fd, message, flags) +__libc_sendmsg (fd, message, flags) int fd; const struct msghdr *message; int flags; @@ -87,5 +87,8 @@ sendmsg (fd, message, flags) cm = CMSG_NXTHDR ((struct msghdr *) message, cm); } - return __sendmsg (fd, message, flags); + return __syscall_sendmsg (fd, message, flags); } + +weak_alias (__libc_sendmsg, __sendmsg) +weak_alias (__libc_sendmsg, sendmsg) -- cgit v1.2.3-70-g09d2