summaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorVitaliy Makkoveev <mvs@cvs.openbsd.org>2024-01-26 18:24:24 +0000
committerVitaliy Makkoveev <mvs@cvs.openbsd.org>2024-01-26 18:24:24 +0000
commit4c15708952436a05784f57ea1734e6031a546dba (patch)
treeb9fd86e325561b5f487057abbe5e84011c8892ae /sys/kern/syscalls.master
parentcce255a4dd575e3ece1031929aed5f14f11110b2 (diff)
Unlock listen(2). `somaxconn_local' and `sominconn_local' used
respectively to cache values as we do in other places. ok bluhm
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index c30a0f92e57..0400b8ea8d4 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.256 2023/12/21 19:34:07 miod Exp $
+; $OpenBSD: syscalls.master,v 1.257 2024/01/26 18:24:23 mvs Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -223,7 +223,7 @@
socklen_t namelen); }
105 STD NOLOCK { int sys_setsockopt(int s, int level, int name, \
const void *val, socklen_t valsize); }
-106 STD { int sys_listen(int s, int backlog); }
+106 STD NOLOCK { int sys_listen(int s, int backlog); }
107 STD { int sys_chflagsat(int fd, const char *path, \
u_int flags, int atflags); }
108 STD NOLOCK { int sys_pledge(const char *promises, \