diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-07-11 03:04:03 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-07-11 03:04:03 +0000 |
commit | 71e3df895b17d68f1ba03f499506e23449bfc760 (patch) | |
tree | 6c03701f87b29350fe31b4be3533118874ecf747 /sys/compat/hpux | |
parent | d452743af4e05dd24d5e24e6c9aa386f3cab94b4 (diff) |
typedef hpux_stack_t kinda like stack_t
Diffstat (limited to 'sys/compat/hpux')
-rw-r--r-- | sys/compat/hpux/hpux_sig.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/hpux/hpux_sig.h b/sys/compat/hpux/hpux_sig.h index f1c0ba71719..620758f6eef 100644 --- a/sys/compat/hpux/hpux_sig.h +++ b/sys/compat/hpux/hpux_sig.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_sig.h,v 1.4 2004/07/11 00:29:30 mickey Exp $ */ +/* $OpenBSD: hpux_sig.h,v 1.5 2004/07/11 03:04:02 mickey Exp $ */ /* $NetBSD: hpux_sig.h,v 1.1 1997/04/01 19:59:03 scottr Exp $ */ /* @@ -44,11 +44,12 @@ * Signal-related HPUX compatibility routines and data types */ +typedef struct hpux_sigaltstack { void *ss_sp; int ss_flags; size_t ss_size; -}; +} hpux_stack_t; #define HPUX_SS_DISABLE 0x0002 #ifdef _KERNEL |