diff options
author | 2020-03-10 19:20:14 +0000 | |
---|---|---|
committer | 2020-03-10 19:20:14 +0000 | |
commit | c015c199e245ddc716bcb4a532be68f318f6f5bf (patch) | |
tree | 9c9fb4c208f3bc1e4fd3fe63cb79183f552bdd8e | |
parent | Relookup policy based on received cryptographic parameter proposal. (diff) | |
download | wireguard-openbsd-c015c199e245ddc716bcb4a532be68f318f6f5bf.tar.xz wireguard-openbsd-c015c199e245ddc716bcb4a532be68f318f6f5bf.zip |
Unlock fcntl(2).
ok visa@
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 232b977f54f..9a8b9e46f5f 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.205 2020/02/22 12:00:24 anton Exp $ +; $OpenBSD: syscalls.master,v 1.206 2020/03/10 19:20:14 anton Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -203,7 +203,7 @@ 90 STD NOLOCK { int sys_dup2(int from, int to); } 91 STD NOLOCK { int sys_nanosleep(const struct timespec *rqtp, \ struct timespec *rmtp); } -92 STD { int sys_fcntl(int fd, int cmd, ... void *arg); } +92 STD NOLOCK { int sys_fcntl(int fd, int cmd, ... void *arg); } 93 STD { int sys_accept4(int s, struct sockaddr *name, \ socklen_t *anamelen, int flags); } 94 STD NOLOCK { int sys___thrsleep(const volatile void *ident, \ |