diff options
| author | 2001-07-03 15:32:34 +0000 | |
|---|---|---|
| committer | 2001-07-03 15:32:34 +0000 | |
| commit | 108bc444788caf9420b9f6ae1a2222c9e7f1febe (patch) | |
| tree | 9f7185f7289d7914455c320fe7b366339c3e4e98 /sys/compat/linux/linux_misc.c | |
| parent | sync set_spi with netbsd (fixes typo). (diff) | |
| download | wireguard-openbsd-108bc444788caf9420b9f6ae1a2222c9e7f1febe.tar.xz wireguard-openbsd-108bc444788caf9420b9f6ae1a2222c9e7f1febe.zip | |
rename some syscalls to <syscall>16 to make room for new ones.
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 30262a7c8b0..80e6d63fa82 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_misc.c,v 1.35 2001/04/02 21:43:11 niklas Exp $ */ +/* $OpenBSD: linux_misc.c,v 1.36 2001/07/03 15:32:34 jasoni Exp $ */ /* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */ /* @@ -1219,12 +1219,12 @@ linux_sys_personality(p, v, retval) * The calls are here because of type conversions. */ int -linux_sys_setreuid(p, v, retval) +linux_sys_setreuid16(p, v, retval) struct proc *p; void *v; register_t *retval; { - struct linux_sys_setreuid_args /* { + struct linux_sys_setreuid16_args /* { syscallarg(int) ruid; syscallarg(int) euid; } */ *uap = v; @@ -1239,12 +1239,12 @@ linux_sys_setreuid(p, v, retval) } int -linux_sys_setregid(p, v, retval) +linux_sys_setregid16(p, v, retval) struct proc *p; void *v; register_t *retval; { - struct linux_sys_setregid_args /* { + struct linux_sys_setregid16_args /* { syscallarg(int) rgid; syscallarg(int) egid; } */ *uap = v; @@ -1311,12 +1311,12 @@ linux_sys___sysctl(p, v, retval) } int -linux_sys_setresuid(p, v, retval) +linux_sys_setresuid16(p, v, retval) struct proc *p; void *v; register_t *retval; { - struct linux_sys_setresuid_args /* { + struct linux_sys_setresuid16_args /* { syscallarg(uid_t) ruid; syscallarg(uid_t) euid; syscallarg(uid_t) suid; |
