diff options
author | Moritz Buhl <mbuhl@cvs.openbsd.org> | 2022-09-03 12:33:46 +0000 |
---|---|---|
committer | Moritz Buhl <mbuhl@cvs.openbsd.org> | 2022-09-03 12:33:46 +0000 |
commit | 7f6c313f543e83d6dfbb1599e944085e54a5cb6b (patch) | |
tree | 59c68b3cfd276cd3eddd6c4037cb484ce2002b04 /sys/kern/syscalls.c | |
parent | ebbae8fa9819ce7cbdfd156ef977c97a9f483cf9 (diff) |
add the sendmmsg syscall that allows sending multiple msghdrs at
once. libc, man page, and regress parts to come.
With input from jca@, bluhm@.
OK bluhm@
Diffstat (limited to 'sys/kern/syscalls.c')
-rw-r--r-- | sys/kern/syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 9f3b973e005..2cddcb6a538 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syscalls.c,v 1.243 2022/09/02 13:23:33 mbuhl Exp $ */ +/* $OpenBSD: syscalls.c,v 1.244 2022/09/03 12:33:44 mbuhl Exp $ */ /* * System call names. @@ -137,7 +137,7 @@ const char *const syscallnames[] = { "unveil", /* 114 = unveil */ "__realpath", /* 115 = __realpath */ "recvmmsg", /* 116 = recvmmsg */ - "#117 (unimplemented sendmmsg)", /* 117 = unimplemented sendmmsg */ + "sendmmsg", /* 117 = sendmmsg */ "getsockopt", /* 118 = getsockopt */ "thrkill", /* 119 = thrkill */ "readv", /* 120 = readv */ |