diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-10-28 03:39:31 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-10-28 03:39:31 +0000 |
commit | fb0e880601a674837feb396dd34ea76f09ce9f89 (patch) | |
tree | 7dc1d2b69234f52c74a38385b8f6f9eee6fd75fe /sys/compat/linux/linux_syscallargs.h | |
parent | 6b50a28cb283d9ba12a9a06cab9232f5146b8a3d (diff) |
getdents64 support, based on FreeBSD.
thanks to jpmk@fibertel.com.ar for providing a testbed; jasoni ok.
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index f1c17c1b1a9..67fbd53602e 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.37 2002/06/05 19:43:44 jasoni Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.38 2002/10/28 03:39:30 fgsch Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.35 2002/10/28 03:35:53 fgsch Exp */ #ifdef syscallarg @@ -517,6 +517,12 @@ struct linux_sys_setfsuid_args { syscallarg(uid_t) uid; }; +struct linux_sys_getdents64_args { + syscallarg(int) fd; + syscallarg(void *) dirent; + syscallarg(unsigned) count; +}; + struct linux_sys_fcntl64_args { syscallarg(u_int) fd; syscallarg(u_int) cmd; |