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.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index 14cd13941ae..a8d02ab8800 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.23 2000/06/07 13:37:56 niklas Exp $ */
+/* $OpenBSD: linux_syscallargs.h,v 1.24 2000/06/07 14:23:07 niklas Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.22 2000/04/12 04:22:40 jasoni Exp
+ * created from OpenBSD: syscalls.master,v 1.24 2000/06/07 14:11:38 niklas Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -440,6 +440,11 @@ struct linux_sys_getcwd_args {
syscallarg(size_t) length;
};
+struct linux_sys_sigaltstack_args {
+ syscallarg(const struct linux_sigaltstack *) nss;
+ syscallarg(struct linux_sigaltstack *) oss;
+};
+
struct linux_sys_ugetrlimit_args {
syscallarg(u_int) which;
syscallarg(struct linux_rlimit *) rlp;
@@ -598,5 +603,6 @@ 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 linux_sys_sigaltstack __P((struct proc *, void *, register_t *));
int sys_vfork __P((struct proc *, void *, register_t *));
int linux_sys_ugetrlimit __P((struct proc *, void *, register_t *));