diff options
Diffstat (limited to 'sys/compat/hpux/hppa/hpux_syscallargs.h')
-rw-r--r-- | sys/compat/hpux/hppa/hpux_syscallargs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/hpux/hppa/hpux_syscallargs.h b/sys/compat/hpux/hppa/hpux_syscallargs.h index 2f4abb5dae2..8d73395d4da 100644 --- a/sys/compat/hpux/hppa/hpux_syscallargs.h +++ b/sys/compat/hpux/hppa/hpux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: hpux_syscallargs.h,v 1.2 2004/07/10 22:38:11 mickey Exp $ */ +/* $OpenBSD: hpux_syscallargs.h,v 1.3 2004/07/11 00:21:29 mickey Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.2 2004/07/10 22:37:33 mickey Exp + * created from OpenBSD: syscalls.master,v 1.3 2004/07/11 00:20:46 mickey Exp */ #ifdef syscallarg @@ -337,6 +337,11 @@ struct hpux_sys_nshmctl_args { syscallarg(caddr_t) buf; }; +struct hpux_sys_sigaltstack_args { + syscallarg(const struct hpux_sigaltstack *) nss; + syscallarg(struct hpux_sigaltstack *) oss; +}; + /* * System call prototypes. */ @@ -494,3 +499,4 @@ int hpux_sys_nshmctl(struct proc *, void *, register_t *); #endif int sys_lchown(struct proc *, void *, register_t *); int sys_nanosleep(struct proc *, void *, register_t *); +int hpux_sys_sigaltstack(struct proc *, void *, register_t *); |