/netbsd-src/external/mit/libuv/dist/docs/src/ |
H A D | udp.rst | 46 * Indicates that the message was received by recvmmsg, so the buffer provided 51 * Indicates that the buffer provided has been fully utilized by recvmmsg and 65 * Indicates that recvmmsg should be used, if available. 84 a transmission error was detected; if using :man:`recvmmsg(2)` no more 95 When using :man:`recvmmsg(2)`, chunks will have the `UV_UDP_MMSG_CHUNK` flag set, 156 * `UV_UDP_RECVMMSG`: if set, and the platform supports it, :man:`recvmmsg(2)` will 408 When using :man:`recvmmsg(2)`, the number of messages received at a time is limited 412 .. versionchanged:: 1.35.0 added support for :man:`recvmmsg(2)` on supported platforms). 415 .. versionchanged:: 1.37.0 :man:`recvmmsg(2)` support is no longer enabled implicitly, 419 determine if a buffer sized for use with :man:`recvmmsg(2)` should be [all …]
|
/netbsd-src/tests/lib/libc/sys/ |
H A D | t_recvmmsg.c | 131 cnt = recvmmsg(fd[1], mmsghdr, min(mmsgcnt, n), in ATF_TC_BODY()
|
/netbsd-src/external/mit/libuv/dist/src/unix/ |
H A D | freebsd.c | 281 return recvmmsg(fd, in uv__recvmmsg()
|
/netbsd-src/external/bsd/nsd/dist/ |
H A D | configure.ac | 685 AC_ARG_ENABLE(recvmmsg, AS_HELP_STRING([--enable-recvmmsg],[Enable recvmmsg and sendmmsg compilatio… optenable 688 AC_CHECK_FUNC([recvmmsg], [ 698 int r = recvmmsg(s, 0, 0, 0, 0) == -1 && errno == ENOSYS; 703 AC_DEFINE([HAVE_RECVMMSG], [1], [Define if recvmmsg is implemented])], [ 705 AC_DEFINE([HAVE_RECVMMSG], [1], [Define if recvmmsg exists])]
|
H A D | config.h.in | 320 /* Define if recvmmsg is implemented */
|
H A D | configure | 1406 --enable-recvmmsg Enable recvmmsg and sendmmsg compilation, faster but 8049 int r = recvmmsg(s, 0, 0, 0, 0) == -1 && errno == ENOSYS;
|
/netbsd-src/external/mpl/bind/dist/doc/notes/ |
H A D | notes-9.18.13.rst |
|
/netbsd-src/lib/libpthread/ |
H A D | pthread_cancelstub.c | 584 recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, in recvmmsg() function 779 __strong_alias(_recvmmsg, recvmmsg)
|
/netbsd-src/lib/libc/sys/ |
H A D | Makefile.inc | 188 readv.S recvfrom.S recvmmsg.S recvmsg.S \ 377 MLINKS+=recv.2 recvfrom.2 recv.2 recvmsg.2 recv.2 recvmmsg.2
|
/netbsd-src/sys/sys/ |
H A D | socket.h | 653 int recvmmsg(int, struct mmsghdr *, unsigned int, unsigned int,
|
/netbsd-src/sys/rump/ |
H A D | rump.sysmap | 212 475 sys_recvmmsg recvmmsg rump___sysimpl_recvmmsg
|
/netbsd-src/external/bsd/nsd/dist/doc/ |
H A D | RELNOTES | 356 - Remove errno reset behaviour from sendmmsg and recvmmsg 462 - If no recvmmsg, dont use msg_flags member, but errno for error, 494 - Number of different UDP handlers has been reduced to one. recvmmsg 637 - Fix #4205: enable-recvmmsg in mixed IPv4/IPv6 environment fails. 894 - #772 Document that recvmmsg has IPv6 problems on some linux kernels. 1142 - Disabled recvmmsg and sendmmsg usage by default because kernel 1203 - configure --disable-recvmmsg for compat with older Linux kernels, 1261 use recvmmsg and sendmmsg, or only recvmmsg, or recvfrom.
|
H A D | ChangeLog | 659 - Remove errno reset behaviour from sendmmsg and recvmmsg 908 - If no recvmmsg, dont use msg_flags member, but errno for error, 924 - Number of different UDP handlers has been reduced to one. recvmmsg 1243 - Fix #4205: enable-recvmmsg in mixed IPv4/IPv6 environment fails. 1728 - #772 Document that recvmmsg has IPv6 problems on some linux kernels. 2331 - Disabled recvmmsg and sendmmsg usage by default because kernel 2457 - configure --disable-recvmmsg for compat with older Linux kernels, 2543 use recvmmsg and sendmmsg, or only recvmmsg, or recvfrom.
|
/netbsd-src/external/mpl/bind/dist/ |
H A D | configure.ac | 584 # libuv recvmmsg support 591 [0], [Disable recvmmsg support on systems with MUSL glibc])],
|
/netbsd-src/external/mit/libuv/dist/ |
H A D | ChangeLog | 156 * unix: ensure struct msghdr is zeroed in recvmmsg (Ondřej Surý) 158 * test: test with maximum recvmmsg buffer (Ondřej Surý) 543 * doc: clarify UDP errors and recvmmsg (Ethel Weston) 598 * linux: fix i386 sendmmsg/recvmmsg support (Ben Noordhuis) 803 * udp: add flag to enable recvmmsg(2) explicitly (Saúl Ibarra Corretgé) 824 * udp: return recvmmsg-ed datagrams in order (Saúl Ibarra Corretgé) 933 * freebsd,linux: add recvmmsg() + sendmmsg() udp implementation (Marek Vavrusa)
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 171 PRE_SYSCALL(recvmmsg)(long fd, sanitizer_kernel_mmsghdr *msg, long vlen, 176 POST_SYSCALL(recvmmsg)(long res, long fd, sanitizer_kernel_mmsghdr *msg,
|
H A D | sanitizer_syscalls_netbsd.inc | 3696 PRE_SYSCALL(recvmmsg) 3702 POST_SYSCALL(recvmmsg)
|
H A D | sanitizer_common_interceptors.inc | 2971 INTERCEPTOR(int, recvmmsg, int fd, struct __sanitizer_mmsghdr *msgvec, 2974 COMMON_INTERCEPTOR_ENTER(ctx, recvmmsg, fd, msgvec, vlen, flags, timeout); 2976 int res = REAL(recvmmsg)(fd, msgvec, vlen, flags, timeout); 2988 #define INIT_RECVMMSG COMMON_INTERCEPT_FUNCTION(recvmmsg);
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 169 PRE_SYSCALL(recvmmsg)(long fd, sanitizer_kernel_mmsghdr *msg, long vlen, 174 POST_SYSCALL(recvmmsg)(long res, long fd, sanitizer_kernel_mmsghdr *msg,
|
H A D | sanitizer_syscalls_netbsd.inc | 3722 PRE_SYSCALL(recvmmsg) 3728 POST_SYSCALL(recvmmsg)
|
H A D | sanitizer_common_interceptors.inc | 2995 INTERCEPTOR(int, recvmmsg, int fd, struct __sanitizer_mmsghdr *msgvec, 2998 COMMON_INTERCEPTOR_ENTER(ctx, recvmmsg, fd, msgvec, vlen, flags, timeout); 3000 int res = REAL(recvmmsg)(fd, msgvec, vlen, flags, timeout); 3012 #define INIT_RECVMMSG COMMON_INTERCEPT_FUNCTION(recvmmsg);
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 172 PRE_SYSCALL(recvmmsg) 177 POST_SYSCALL(recvmmsg)
|
H A D | sanitizer_syscalls_netbsd.inc | 3722 PRE_SYSCALL(recvmmsg) 3728 POST_SYSCALL(recvmmsg)
|
H A D | sanitizer_common_interceptors.inc | 3082 INTERCEPTOR(int, recvmmsg, int fd, struct __sanitizer_mmsghdr *msgvec, 3085 COMMON_INTERCEPTOR_ENTER(ctx, recvmmsg, fd, msgvec, vlen, flags, timeout); 3087 int res = REAL(recvmmsg)(fd, msgvec, vlen, flags, timeout); 3099 #define INIT_RECVMMSG COMMON_INTERCEPT_FUNCTION(recvmmsg);
|
/netbsd-src/usr.sbin/makemandb/ |
H A D | nostem.txt | 3254 recvmmsg
|