diff options
Diffstat (limited to 'sys/compat/sunos/sunos_syscallargs.h')
-rw-r--r-- | sys/compat/sunos/sunos_syscallargs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h index 3f3c08be44c..95630c8f9df 100644 --- a/sys/compat/sunos/sunos_syscallargs.h +++ b/sys/compat/sunos/sunos_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.4 1996/08/02 21:55:22 niklas Exp + * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -77,6 +77,12 @@ struct sunos_sys_reboot_args { syscallarg(char *) bootstr; }; +struct sunos_sys_execve_args { + syscallarg(char *) path; + syscallarg(char **) argp; + syscallarg(char **) envp; +}; + struct sunos_sys_omsync_args { syscallarg(caddr_t) addr; syscallarg(size_t) len; @@ -241,7 +247,7 @@ int sunos_sys_ioctl __P((struct proc *, void *, register_t *)); int sunos_sys_reboot __P((struct proc *, void *, register_t *)); int sys_symlink __P((struct proc *, void *, register_t *)); int sys_readlink __P((struct proc *, void *, register_t *)); -int sys_execve __P((struct proc *, void *, register_t *)); +int sunos_sys_execve __P((struct proc *, void *, register_t *)); int sys_umask __P((struct proc *, void *, register_t *)); int sys_chroot __P((struct proc *, void *, register_t *)); int compat_43_sys_fstat __P((struct proc *, void *, register_t *)); |