summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2011-11-15 17:12:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2011-11-15 17:12:15 +0000
commit87196db39b97f49b5477e857588f7cf8c608772d (patch)
treed1e7657e5937065a51cb8345fe2c07e41c6095af /sys/arch/hppa64
parent2798b96c8fa1fb0d3d30888b6cf0059883e1eff2 (diff)
label_t is the kernel setjmp buffer. It should simply be an array of
the right type, noone will ever fiddle with the internals. discussed with jsing
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r--sys/arch/hppa64/include/_types.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/arch/hppa64/include/_types.h b/sys/arch/hppa64/include/_types.h
index 22f92107858..8ea6f55a3ee 100644
--- a/sys/arch/hppa64/include/_types.h
+++ b/sys/arch/hppa64/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.9 2011/11/10 23:15:11 deraadt Exp $ */
+/* $OpenBSD: _types.h,v 1.10 2011/11/15 17:12:14 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -36,12 +36,8 @@
#define _MACHINE__TYPES_H_
#if defined(_KERNEL)
-typedef struct label_t { /* XXX longs?? */
- int lbl_rp;
- int lbl_sp;
- int lbl_s[17];
- int lbl_ss[1];
- double lbl_sf[10]; /* hp800:fr12-fr15, hp700:fr12-fr21 */
+typedef struct label_t {
+ long val[20];
} label_t;
#endif