diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2004-09-20 18:42:23 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2004-09-20 18:42:23 +0000 |
| commit | 43b3feff284536ec48dba06aefc8d9f05ab25460 (patch) | |
| tree | a8dff0c42be607291a97df081846f06ad56aa4f2 /sys/compat/linux/arch/powerpc/linux_syscallargs.h | |
| parent | 110cc1cc6195d1f81ae9d063e061403c6854917e (diff) | |
regen:
implement support for Linux statfs64() syscall - 64bit variant of statfs()
Diffstat (limited to 'sys/compat/linux/arch/powerpc/linux_syscallargs.h')
| -rw-r--r-- | sys/compat/linux/arch/powerpc/linux_syscallargs.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/sys/compat/linux/arch/powerpc/linux_syscallargs.h b/sys/compat/linux/arch/powerpc/linux_syscallargs.h index 315ba16a8eb..b8ff117918c 100644 --- a/sys/compat/linux/arch/powerpc/linux_syscallargs.h +++ b/sys/compat/linux/arch/powerpc/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.24 2004/09/08 19:46:18 jdolecek Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.25 2004/09/20 18:42:23 jdolecek Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.19 2004/09/08 19:45:22 jdolecek Exp + * created from NetBSD: syscalls.master,v 1.20 2004/09/20 18:41:07 jdolecek Exp */ #ifndef _LINUX_SYS__SYSCALLARGS_H_ @@ -555,6 +555,18 @@ struct linux_sys_exit_group_args { syscallarg(int) error_code; }; +struct linux_sys_statfs64_args { + syscallarg(const char *) path; + syscallarg(size_t) sz; + syscallarg(struct linux_statfs64 *) sp; +}; + +struct linux_sys_fstatfs64_args { + syscallarg(int) fd; + syscallarg(size_t) sz; + syscallarg(struct linux_statfs64 *) sp; +}; + /* * System call prototypes. */ @@ -885,4 +897,8 @@ int sys_madvise(struct lwp *, void *, register_t *); int linux_sys_exit_group(struct lwp *, void *, register_t *); +int linux_sys_statfs64(struct lwp *, void *, register_t *); + +int linux_sys_fstatfs64(struct lwp *, void *, register_t *); + #endif /* _LINUX_SYS__SYSCALLARGS_H_ */ |
