diff options
author | 2015-02-09 13:54:23 +0000 | |
---|---|---|
committer | 2015-02-09 13:54:23 +0000 | |
commit | eddbaeddb7c0b3bfe642a260f1e43cf590fd78e4 (patch) | |
tree | c68a727c8523a1deb1751ceed6e71f76fb1ecfb1 | |
parent | remove INITIALIZE macro and do it the hard way. (diff) | |
download | wireguard-openbsd-eddbaeddb7c0b3bfe642a260f1e43cf590fd78e4.tar.xz wireguard-openbsd-eddbaeddb7c0b3bfe642a260f1e43cf590fd78e4.zip |
getrtable() can operate NOLOCK; ok guenther
-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 59e4f8e084f..7e79b3dfde1 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.151 2015/02/09 13:41:24 pelikan Exp $ +; $OpenBSD: syscalls.master,v 1.152 2015/02/09 13:54:23 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -529,7 +529,7 @@ 308 OBSOL fstatfs53 309 OBSOL fhstatfs53 310 STD { int sys_setrtable(int rtableid); } -311 STD { int sys_getrtable(void); } +311 STD NOLOCK { int sys_getrtable(void); } 312 OBSOL t32_getdirentries 313 STD { int sys_faccessat(int fd, const char *path, \ int amode, int flag); } |