diff options
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 67fbd53602e..895f7037af3 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.38 2002/10/28 03:39:30 fgsch Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.39 2002/10/30 20:11:27 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.35 2002/10/28 03:35:53 fgsch Exp + * created from OpenBSD: syscalls.master,v 1.36 2002/10/30 20:10:48 millert Exp */ #ifdef syscallarg @@ -407,21 +407,27 @@ struct linux_sys_mremap_args { }; struct linux_sys_setresuid16_args { - syscallarg(uid_t) ruid; - syscallarg(uid_t) euid; - syscallarg(uid_t) suid; + syscallarg(u_int16_t) ruid; + syscallarg(u_int16_t) euid; + syscallarg(u_int16_t) suid; +}; + +struct linux_sys_getresuid16_args { + syscallarg(u_int16_t *) ruid; + syscallarg(u_int16_t *) euid; + syscallarg(u_int16_t *) suid; }; struct linux_sys_setresgid16_args { - syscallarg(gid_t) rgid; - syscallarg(gid_t) egid; - syscallarg(gid_t) sgid; + syscallarg(u_int16_t) rgid; + syscallarg(u_int16_t) egid; + syscallarg(u_int16_t) sgid; }; struct linux_sys_getresgid16_args { - syscallarg(gid_t *) rgid; - syscallarg(gid_t *) egid; - syscallarg(gid_t *) sgid; + syscallarg(u_int16_t *) rgid; + syscallarg(u_int16_t *) egid; + syscallarg(u_int16_t *) sgid; }; struct linux_sys_rt_sigreturn_args { @@ -507,12 +513,6 @@ struct linux_sys_fstat64_args { syscallarg(struct linux_stat64 *) sp; }; -struct linux_sys_getresuid_args { - syscallarg(uid_t *) ruid; - syscallarg(uid_t *) euid; - syscallarg(uid_t *) suid; -}; - struct linux_sys_setfsuid_args { syscallarg(uid_t) uid; }; @@ -713,7 +713,7 @@ int linux_sys_sched_rr_get_interval(struct proc *, void *, register_t *); int sys_nanosleep(struct proc *, void *, register_t *); int linux_sys_mremap(struct proc *, void *, register_t *); int linux_sys_setresuid16(struct proc *, void *, register_t *); -int linux_sys_getresuid(struct proc *, void *, register_t *); +int linux_sys_getresuid16(struct proc *, void *, register_t *); int linux_sys_vm86(struct proc *, void *, register_t *); int linux_sys_query_module(struct proc *, void *, register_t *); int sys_poll(struct proc *, void *, register_t *); @@ -756,10 +756,10 @@ int linux_sys_setregid(struct proc *, void *, register_t *); int sys_getgroups(struct proc *, void *, register_t *); int sys_setgroups(struct proc *, void *, register_t *); int linux_sys_fchown(struct proc *, void *, register_t *); -int linux_sys_setresuid(struct proc *, void *, register_t *); -int linux_sys_getresuid(struct proc *, void *, register_t *); -int linux_sys_setresgid(struct proc *, void *, register_t *); -int linux_sys_getresgid(struct proc *, void *, register_t *); +int sys_setresuid(struct proc *, void *, register_t *); +int sys_getresuid(struct proc *, void *, register_t *); +int sys_setresgid(struct proc *, void *, register_t *); +int sys_getresgid(struct proc *, void *, register_t *); int linux_sys_chown(struct proc *, void *, register_t *); int sys_setuid(struct proc *, void *, register_t *); int sys_setgid(struct proc *, void *, register_t *); |