diff options
Diffstat (limited to 'sys/compat/svr4/svr4_syscallargs.h')
-rw-r--r-- | sys/compat/svr4/svr4_syscallargs.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h index 0749eb5c255..21081fb6ae1 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.28 2000/06/24 21:02:46 fgsch Exp $ */ +/* $OpenBSD: svr4_syscallargs.h,v 1.29 2000/06/28 23:49:45 fgsch Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.28 2000/06/24 21:00:30 fgsch Exp + * created from OpenBSD: syscalls.master,v 1.29 2000/06/28 23:48:15 fgsch Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -375,6 +375,15 @@ struct svr4_sys_getdents64_args { syscallarg(int) nbytes; }; +struct svr4_sys_mmap64_args { + syscallarg(svr4_caddr_t) addr; + syscallarg(svr4_size_t) len; + syscallarg(int) prot; + syscallarg(int) flags; + syscallarg(int) fd; + syscallarg(svr4_off64_t) pos; +}; + struct svr4_sys_stat64_args { syscallarg(const char *) path; syscallarg(struct svr4_stat64 *) sb; @@ -395,6 +404,11 @@ struct svr4_sys_fstatvfs64_args { syscallarg(struct svr4_statvfs64 *) fs; }; +struct svr4_sys_creat64_args { + syscallarg(char *) path; + syscallarg(int) mode; +}; + struct svr4_sys_open64_args { syscallarg(char *) path; syscallarg(int) flags; @@ -538,10 +552,12 @@ 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_getdents64 __P((struct proc *, void *, register_t *)); +int svr4_sys_mmap64 __P((struct proc *, void *, register_t *)); int svr4_sys_stat64 __P((struct proc *, void *, register_t *)); int svr4_sys_lstat64 __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_creat64 __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 *)); |