diff options
author | 2021-01-18 18:25:51 +0000 | |
---|---|---|
committer | 2021-01-18 18:25:51 +0000 | |
commit | b39a1c7a73da532706ab97662693267771f404d1 (patch) | |
tree | c65fc89cb372008466532b86cea219bdf9a2b170 | |
parent | Remove c++ comment that snuck in and remove useless debug output. (diff) | |
download | wireguard-openbsd-b39a1c7a73da532706ab97662693267771f404d1.tar.xz wireguard-openbsd-b39a1c7a73da532706ab97662693267771f404d1.zip |
Unlock getppid(2).
ok mpi@
-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 fb9f1a41c9b..6ba28a2b095 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.207 2020/03/18 19:33:36 anton Exp $ +; $OpenBSD: syscalls.master,v 1.208 2021/01/18 18:25:51 mvs Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -107,7 +107,7 @@ 36 STD { void sys_sync(void); } 37 STD { int sys_msyscall(void *addr, size_t len); } 38 STD { int sys_stat(const char *path, struct stat *ub); } -39 STD { pid_t sys_getppid(void); } +39 STD NOLOCK { pid_t sys_getppid(void); } 40 STD { int sys_lstat(const char *path, struct stat *ub); } 41 STD NOLOCK { int sys_dup(int fd); } 42 STD { int sys_fstatat(int fd, const char *path, \ |