diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 17:08:05 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 17:08:05 +0000 |
commit | c32c0c80d11cf0d1ba4b425261db6e2839e58b58 (patch) | |
tree | 7a3c63feeabb51e25ac902b11d79d060cf949a8a /sys/kern/syscalls.master | |
parent | 4c9b8c7970367b718b6fc99ee5ad044ac3fd38cc (diff) |
Rename __sysctl syscall to just sysctl, as the userland wrapper is no longer
necessary
ok deraadt@ jsing@
Diffstat (limited to 'sys/kern/syscalls.master')
-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 9c29f9f0d59..4dca9276ecb 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp $ +; $OpenBSD: syscalls.master,v 1.159 2015/09/13 17:08:03 guenther Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -349,7 +349,7 @@ 200 STD { int sys_truncate(const char *path, int pad, \ off_t length); } 201 STD { int sys_ftruncate(int fd, int pad, off_t length); } -202 STD { int sys___sysctl(const int *name, u_int namelen, \ +202 STD { int sys_sysctl(const int *name, u_int namelen, \ void *old, size_t *oldlenp, void *new, \ size_t newlen); } 203 STD { int sys_mlock(const void *addr, size_t len); } |