git: 8da89a177d71 - main - libsys: Add MLINKs for recvmmsg.2 and sendmmsg.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 03 Aug 2024 15:02:55 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=8da89a177d7197e985157cc230fa9e401c6efd01
commit 8da89a177d7197e985157cc230fa9e401c6efd01
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2024-08-03 14:57:57 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2024-08-03 14:57:57 +0000
libsys: Add MLINKs for recvmmsg.2 and sendmmsg.2
These were accidentally lost when moving recvmmsg and sendmmsg back
from libc to libsys.
Reported by: Mark Millard <marklmi@yahoo.com>
Reviewed by: brooks, imp
Fixes: 29d079c96491 libsys: move __libsys_interposer consumers
Differential Revision: https://reviews.freebsd.org/D46200
---
lib/libsys/Makefile.sys | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/libsys/Makefile.sys b/lib/libsys/Makefile.sys
index 205f6bc1a5eb..d18f4bc23227 100644
--- a/lib/libsys/Makefile.sys
+++ b/lib/libsys/Makefile.sys
@@ -487,6 +487,7 @@ MLINKS+=read.2 pread.2 \
read.2 readv.2
MLINKS+=readlink.2 readlinkat.2
MLINKS+=recv.2 recvfrom.2 \
+ recv.2 recvmmsg.2 \
recv.2 recvmsg.2
MLINKS+=rename.2 renameat.2
MLINKS+=rtprio.2 rtprio_thread.2
@@ -499,7 +500,8 @@ MLINKS+=select.2 FD_CLR.3 \
select.2 FD_ISSET.3 \
select.2 FD_SET.3 \
select.2 FD_ZERO.3
-MLINKS+=send.2 sendmsg.2 \
+MLINKS+=send.2 sendmmsg.2 \
+ send.2 sendmsg.2 \
send.2 sendto.2
MLINKS+=setpgid.2 setpgrp.2
MLINKS+=setresuid.2 getresgid.2 \