summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authorjasoni <jasoni@cvs.openbsd.org>2001-07-03 21:56:27 +0000
committerjasoni <jasoni@cvs.openbsd.org>2001-07-03 21:56:27 +0000
commit8760d14faf4fd8ab29f4a9e3753991ed32ffcd30 (patch)
tree181d0d23ab6434816dc17a93b26305fd8a945379 /sys/compat/linux
parent3306cc88475c2df57bc1e4895979f54871f307f7 (diff)
rename 2 more syscalls to syscallname16 (missed last time)
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/linux_misc.c10
-rw-r--r--sys/compat/linux/syscalls.master6
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index 80e6d63fa82..648d4c29919 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.36 2001/07/03 15:32:34 jasoni Exp $ */
+/* $OpenBSD: linux_misc.c,v 1.37 2001/07/03 21:56:26 jasoni Exp $ */
/* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */
/*
@@ -211,12 +211,12 @@ linux_sys_wait4(p, v, retval)
}
int
-linux_sys_setresgid(p, v, retval)
+linux_sys_setresgid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_setresgid_args /* {
+ struct linux_sys_setresgid16_args /* {
syscallarg(gid_t) rgid;
syscallarg(gid_t) egid;
syscallarg(gid_t) sgid;
@@ -278,12 +278,12 @@ linux_sys_setresgid(p, v, retval)
}
int
-linux_sys_getresgid(p, v, retval)
+linux_sys_getresgid16(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
- struct linux_sys_getresgid_args /* {
+ struct linux_sys_getresgid16_args /* {
syscallarg(gid_t *) rgid;
syscallarg(gid_t *) egid;
syscallarg(gid_t *) sgid;
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master
index 3596e3b3f8b..23ec592b3a4 100644
--- a/sys/compat/linux/syscalls.master
+++ b/sys/compat/linux/syscalls.master
@@ -1,4 +1,4 @@
- $OpenBSD: syscalls.master,v 1.29 2001/07/03 15:32:34 jasoni Exp $
+ $OpenBSD: syscalls.master,v 1.30 2001/07/03 21:56:26 jasoni Exp $
; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@@ -274,9 +274,9 @@
168 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
int timeout); }
169 STD { int linux_sys_nfsservctl(void); }
-170 STD { int linux_sys_setresgid(gid_t rgid, gid_t egid, \
+170 STD { int linux_sys_setresgid16(gid_t rgid, gid_t egid, \
gid_t sgid); }
-171 STD { int linux_sys_getresgid(gid_t *rgid, gid_t *egid, \
+171 STD { int linux_sys_getresgid16(gid_t *rgid, gid_t *egid, \
gid_t *sgid); }
172 STD { int linux_sys_prctl(void); }
173 STD { int linux_sys_rt_sigreturn( \