diff options
Diffstat (limited to 'sys/compat/svr4/svr4_syscallargs.h')
-rw-r--r-- | sys/compat/svr4/svr4_syscallargs.h | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h index 1972bda163d..c7bba803ea1 100644 --- a/sys/compat/svr4/svr4_syscallargs.h +++ b/sys/compat/svr4/svr4_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: svr4_syscallargs.h,v 1.25 1999/06/07 07:18:37 deraadt Exp $ */ +/* $OpenBSD: svr4_syscallargs.h,v 1.26 1999/10/07 17:24:38 brad Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.24 1999/06/07 07:17:48 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.26 1999/10/07 17:23:53 brad Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -339,6 +339,13 @@ struct svr4_sys_pwrite_args { syscallarg(svr4_off_t) off; }; +struct svr4_sys_llseek_args { + syscallarg(int) fd; + syscallarg(long) offset1; + syscallarg(long) offset2; + syscallarg(int) whence; +}; + struct svr4_sys_acl_args { syscallarg(char *) path; syscallarg(int) cmd; @@ -362,6 +369,22 @@ struct svr4_sys_facl_args { syscallarg(struct svr4_aclent *) buf; }; +struct svr4_sys_fstat64_args { + syscallarg(int) fd; + syscallarg(struct svr4_stat64 *) sb; +}; + +struct svr4_sys_fstatvfs64_args { + syscallarg(int) fd; + syscallarg(struct svr4_statvfs64 *) fs; +}; + +struct svr4_sys_open64_args { + syscallarg(char *) path; + syscallarg(int) flags; + syscallarg(int) mode; +}; + struct svr4_sys_socket_args { syscallarg(int) domain; syscallarg(int) type; @@ -488,6 +511,7 @@ int sys_getitimer __P((struct proc *, void *, register_t *)); int sys_setitimer __P((struct proc *, void *, register_t *)); int svr4_sys_pread __P((struct proc *, void *, register_t *)); int svr4_sys_pwrite __P((struct proc *, void *, register_t *)); +int svr4_sys_llseek __P((struct proc *, void *, register_t *)); int svr4_sys_acl __P((struct proc *, void *, register_t *)); int svr4_sys_auditsys __P((struct proc *, void *, register_t *)); int sys_clock_gettime __P((struct proc *, void *, register_t *)); @@ -497,6 +521,9 @@ int sys_nanosleep __P((struct proc *, void *, register_t *)); int svr4_sys_facl __P((struct proc *, void *, register_t *)); int compat_43_sys_setreuid __P((struct proc *, void *, register_t *)); int compat_43_sys_setregid __P((struct proc *, void *, register_t *)); +int svr4_sys_fstat64 __P((struct proc *, void *, register_t *)); +int svr4_sys_fstatvfs64 __P((struct proc *, void *, register_t *)); +int svr4_sys_open64 __P((struct proc *, void *, register_t *)); int svr4_sys_socket __P((struct proc *, void *, register_t *)); int sys_socketpair __P((struct proc *, void *, register_t *)); int sys_bind __P((struct proc *, void *, register_t *)); |