diff options
author | jasoni <jasoni@cvs.openbsd.org> | 2000-03-28 06:36:30 +0000 |
---|---|---|
committer | jasoni <jasoni@cvs.openbsd.org> | 2000-03-28 06:36:30 +0000 |
commit | e945f6a215370f0e7bb715edfd7a496979c39b3a (patch) | |
tree | 48577d2c17695bc288b91639410d5222d70cc2e1 /sys/compat/linux/linux_syscallargs.h | |
parent | b0607e8994d5d6d95685f9c2dbee5f9901f3e7b5 (diff) |
sync
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index a60faf845b4..bb7e1fa76f5 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.19 2000/03/27 22:38:44 jasoni Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.20 2000/03/28 06:36:29 jasoni Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 2000/03/27 22:38:12 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.20 2000/03/28 06:35:57 jasoni Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -373,6 +373,10 @@ struct linux_sys_getresgid_args { syscallarg(gid_t *) sgid; }; +struct linux_sys_rt_sigreturn_args { + syscallarg(struct linux_rt_sigframe *) sfp; +}; + struct linux_sys_rt_sigaction_args { syscallarg(int) signum; syscallarg(struct linux_sigaction *) nsa; @@ -550,6 +554,7 @@ int linux_sys_getresuid __P((struct proc *, void *, register_t *)); int sys_poll __P((struct proc *, void *, register_t *)); int linux_sys_setresgid __P((struct proc *, void *, register_t *)); int linux_sys_getresgid __P((struct proc *, void *, register_t *)); +int linux_sys_rt_sigreturn __P((struct proc *, void *, register_t *)); 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 *)); |