diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-07-11 00:29:31 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-07-11 00:29:31 +0000 |
commit | e48bfe270172d470435890320762023d2eae6f24 (patch) | |
tree | a359fb16fcb563929e850068a06530701971f86c /sys/compat/hpux/hppa | |
parent | 3543f90f96b96bcd7fbfc9b0e18e5473ca9c8c06 (diff) |
move struct hpux_sigaltstack out into .h file as i just figured out it is needed elsewhere too
Diffstat (limited to 'sys/compat/hpux/hppa')
-rw-r--r-- | sys/compat/hpux/hppa/hpux_sig.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/compat/hpux/hppa/hpux_sig.c b/sys/compat/hpux/hppa/hpux_sig.c index 06462c709c0..ed7cea2ec8c 100644 --- a/sys/compat/hpux/hppa/hpux_sig.c +++ b/sys/compat/hpux/hppa/hpux_sig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_sig.c,v 1.2 2004/07/11 00:20:46 mickey Exp $ */ +/* $OpenBSD: hpux_sig.c,v 1.3 2004/07/11 00:29:30 mickey Exp $ */ /* * Copyright (c) 2004 Michael Shalayeff. All rights reserved. @@ -421,13 +421,8 @@ hpux_sys_sigaltstack(struct proc *p, void *v, register_t *retval) syscallarg(struct hpux_sigaltstack *) nss; syscallarg(struct hpux_sigaltstack *) oss; } */ *uap = v; - struct hpux_sigaltstack { - void *ss_sp; - int ss_flags; -#define HPUX_SS_DISABLE 0x0002 - size_t ss_size; - } hsa; struct sys_sigaltstack_args saa; + struct hpux_sigaltstack hsa; struct sigaltstack *psa, sa; caddr_t sg; int error; |