summaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorMoritz Buhl <mbuhl@cvs.openbsd.org>2022-09-03 21:13:49 +0000
committerMoritz Buhl <mbuhl@cvs.openbsd.org>2022-09-03 21:13:49 +0000
commite28f7c5814179236caadc94c4c084d416fd18ee7 (patch)
tree73c5af9d4dc6ddf7b4d1db363c1d857b2bc8c5cd /sys/kern/syscalls.master
parentefbbe9224dc6bc973905df75ee86a912152f22a5 (diff)
Make recvmmsg and sendmmsg look more alike. change the flag type
to int like other flag parameters, NetBSD uses unsigned int, FreeBSD and Linux do int. OK bluhm@
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 9d88bf30dc1..63f3c65d57b 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.231 2022/09/03 12:33:44 mbuhl Exp $
+; $OpenBSD: syscalls.master,v 1.232 2022/09/03 21:13:48 mbuhl Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -245,11 +245,10 @@
115 STD { int sys___realpath(const char *pathname, \
char *resolved); }
116 STD NOLOCK { int sys_recvmmsg(int s, struct mmsghdr *mmsg, \
- unsigned int vlen, unsigned int flags, \
+ unsigned int vlen, int flags, \
struct timespec *timeout); }
-117 STD NOLOCK { int sys_sendmmsg(int s, \
- struct mmsghdr *mmsg, unsigned int vlen, \
- unsigned int flags); }
+117 STD NOLOCK { int sys_sendmmsg(int s, struct mmsghdr *mmsg,\
+ unsigned int vlen, int flags); }
118 STD { int sys_getsockopt(int s, int level, int name, \
void *val, socklen_t *avalsize); }
119 STD { int sys_thrkill(pid_t tid, int signum, void *tcb); }