summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_syscallargs.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r--sys/compat/linux/linux_syscallargs.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index eaa503f0d8f..b47f63a4874 100644
--- a/sys/compat/linux/linux_syscallargs.h
+++ b/sys/compat/linux/linux_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.14 1995/12/09 04:01:47 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -308,6 +308,12 @@ struct linux_sys_select_args {
syscallarg(struct timeval *) timeout;
};
+struct linux_sys_msync_args {
+ syscallarg(caddr_t) addr;
+ syscallarg(int) len;
+ syscallarg(int) fl;
+};
+
/*
* System call prototypes.
*/
@@ -431,3 +437,6 @@ int linux_sys_llseek __P((struct proc *, void *, register_t *));
int linux_sys_getdents __P((struct proc *, void *, register_t *));
int linux_sys_select __P((struct proc *, void *, register_t *));
int sys_flock __P((struct proc *, void *, register_t *));
+int linux_sys_msync __P((struct proc *, void *, register_t *));
+int sys_readv __P((struct proc *, void *, register_t *));
+int sys_writev __P((struct proc *, void *, register_t *));