diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-02 00:07:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-02 00:07:11 +0000 |
commit | 9304ff1fbb4fc7bfcd69f81138bbf0fc8e07d545 (patch) | |
tree | 8c39a29392fa0081fa101c3e65fa129b28f93270 /sys | |
parent | 79a0860311f5ec209b8bd9905f52cafa77f33fac (diff) |
sync
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/svr4/svr4_syscall.h | 2 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_syscallargs.h | 8 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_syscalls.c | 2 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_sysent.c | 6 |
4 files changed, 11 insertions, 7 deletions
diff --git a/sys/compat/svr4/svr4_syscall.h b/sys/compat/svr4/svr4_syscall.h index da871a4f54a..cb3f21fa416 100644 --- a/sys/compat/svr4/svr4_syscall.h +++ b/sys/compat/svr4/svr4_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/13 06:23:06 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1997/12/02 00:07:05 deraadt Exp */ #define SVR4_SYS_syscall 0 diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h index 4e4ea651880..ac2d0ebbf39 100644 --- a/sys/compat/svr4/svr4_syscallargs.h +++ b/sys/compat/svr4/svr4_syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/13 06:23:06 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1997/12/02 00:07:05 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -296,6 +296,10 @@ struct svr4_sys_uname_args { syscallarg(int) dummy; }; +struct svr4_sys_setegid_args { + syscallarg(gid_t) egid; +}; + struct svr4_sys_sysconfig_args { syscallarg(int) name; }; @@ -472,7 +476,7 @@ int sys_lchown __P((struct proc *, void *, register_t *)); int svr4_sys_memcntl __P((struct proc *, void *, register_t *)); int sys_rename __P((struct proc *, void *, register_t *)); int svr4_sys_uname __P((struct proc *, void *, register_t *)); -int sys_setegid __P((struct proc *, void *, register_t *)); +int svr4_sys_setegid __P((struct proc *, void *, register_t *)); int svr4_sys_sysconfig __P((struct proc *, void *, register_t *)); int sys_adjtime __P((struct proc *, void *, register_t *)); int svr4_sys_systeminfo __P((struct proc *, void *, register_t *)); diff --git a/sys/compat/svr4/svr4_syscalls.c b/sys/compat/svr4/svr4_syscalls.c index 6e32d9727cf..ad6d1abd0bb 100644 --- a/sys/compat/svr4/svr4_syscalls.c +++ b/sys/compat/svr4/svr4_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/13 06:23:06 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1997/12/02 00:07:05 deraadt Exp */ char *svr4_syscallnames[] = { diff --git a/sys/compat/svr4/svr4_sysent.c b/sys/compat/svr4/svr4_sysent.c index b1401e5e527..8ad7479e7d7 100644 --- a/sys/compat/svr4/svr4_sysent.c +++ b/sys/compat/svr4/svr4_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/13 06:23:06 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1997/12/02 00:07:05 deraadt Exp */ #include <sys/param.h> @@ -331,8 +331,8 @@ struct sysent svr4_sysent[] = { sys_rename }, /* 134 = rename */ { 2, s(struct svr4_sys_uname_args), svr4_sys_uname }, /* 135 = uname */ - { 1, s(struct sys_setegid_args), - sys_setegid }, /* 136 = setegid */ + { 1, s(struct svr4_sys_setegid_args), + svr4_sys_setegid }, /* 136 = setegid */ { 1, s(struct svr4_sys_sysconfig_args), svr4_sys_sysconfig }, /* 137 = sysconfig */ { 2, s(struct sys_adjtime_args), |