summaryrefslogtreecommitdiff
path: root/sys/compat/netbsd
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1999-09-26 11:16:37 +0000
committerkstailey <kstailey@cvs.openbsd.org>1999-09-26 11:16:37 +0000
commit933ee6634c1b7a69831d11b29345c4adf1884879 (patch)
treea0f544457f2a7c7db5b14008001fea9b03e1df6e /sys/compat/netbsd
parentcded7db74d7b49dff65f3ff262e0a41124062219 (diff)
netbsd_sendsig() + supporting code
Diffstat (limited to 'sys/compat/netbsd')
-rw-r--r--sys/compat/netbsd/netbsd_signal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/netbsd/netbsd_signal.h b/sys/compat/netbsd/netbsd_signal.h
index 5c57e8696c4..20aee96d9c4 100644
--- a/sys/compat/netbsd/netbsd_signal.h
+++ b/sys/compat/netbsd/netbsd_signal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: netbsd_signal.h,v 1.1 1999/09/14 01:05:25 kstailey Exp $ */
+/* $OpenBSD: netbsd_signal.h,v 1.2 1999/09/26 11:16:36 kstailey Exp $ */
/* $NetBSD: signal.h,v 1.42 1998/12/21 10:35:00 drochner Exp $ */
/*
@@ -58,10 +58,10 @@ struct netbsd_sigaction {
int netbsd_sa_flags; /* see signal options below */
};
-typedef struct netbsd_sigaltstack {
+struct netbsd_sigaltstack {
void *netbsd_ss_sp; /* signal stack base */
size_t netbsd_ss_size; /* signal stack length */
int netbsd_ss_flags; /* SS_DISABLE and/or SS_ONSTACK */
-} netbsd_stack_t;
+};
#endif /* !_NETBSD_SYS_SIGNAL_H_ */