diff options
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 323d2cd5ced..351a7971640 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.40 2003/05/10 17:55:56 miod Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.41 2003/07/03 00:01:20 tedu Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.37 2003/05/10 17:53:57 miod Exp + * created from OpenBSD: syscalls.master,v 1.38 2003/07/03 00:00:04 tedu Exp */ #ifdef syscallarg @@ -493,6 +493,15 @@ struct linux_sys_ugetrlimit_args { syscallarg(struct linux_rlimit *) rlp; }; +struct linux_sys_mmap2_args { + syscallarg(unsigned long) addr; + syscallarg(size_t) len; + syscallarg(int) prot; + syscallarg(int) flags; + syscallarg(int) fd; + syscallarg(linux_off_t) offset; +}; + struct linux_sys_truncate64_args { syscallarg(char *) path; syscallarg(off_t) length; |