summaryrefslogtreecommitdiffstats
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.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index bb7e1fa76f5..1d7bacadc6a 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.20 2000/03/28 06:36:29 jasoni Exp $ */
+/* $OpenBSD: linux_syscallargs.h,v 1.21 2000/04/04 05:32:17 jasoni Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.20 2000/03/28 06:35:57 jasoni Exp
+ * created from OpenBSD: syscalls.master,v 1.21 2000/04/04 05:31:50 jasoni Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -401,6 +401,20 @@ struct linux_sys_rt_sigsuspend_args {
syscallarg(size_t) sigsetsize;
};
+struct linux_sys_pread_args {
+ syscallarg(int) fd;
+ syscallarg(char *) buf;
+ syscallarg(size_t) nbyte;
+ syscallarg(linux_off_t) offset;
+};
+
+struct linux_sys_pwrite_args {
+ syscallarg(int) fd;
+ syscallarg(char *) buf;
+ syscallarg(size_t) nbyte;
+ syscallarg(linux_off_t) offset;
+};
+
struct linux_sys_chown_args {
syscallarg(char *) path;
syscallarg(int) uid;
@@ -559,6 +573,8 @@ int linux_sys_rt_sigaction __P((struct proc *, void *, register_t *));
int linux_sys_rt_sigprocmask __P((struct proc *, void *, register_t *));
int linux_sys_rt_sigpending __P((struct proc *, void *, register_t *));
int linux_sys_rt_sigsuspend __P((struct proc *, void *, register_t *));
+int linux_sys_pread __P((struct proc *, void *, register_t *));
+int linux_sys_pwrite __P((struct proc *, void *, register_t *));
int linux_sys_chown __P((struct proc *, void *, register_t *));
int linux_sys_getcwd __P((struct proc *, void *, register_t *));
int sys_vfork __P((struct proc *, void *, register_t *));