summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include/frame.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-11-15 21:24:15 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-11-15 21:24:15 +0000
commitfbd8ea8c9ce67a08fe73a578538fdb7f7467c80e (patch)
tree5e82eabb38d6912e418c22944679917b9381e7c8 /sys/arch/m88k/include/frame.h
parent8ca8bc22d3b776d69bd7ce8622136de5cb8ee376 (diff)
Resolve the struct trapframe tf_mode/tf_flags duality by getting rid of
the tf_mode name. This field only contains flags used internally by the exception processing code.
Diffstat (limited to 'sys/arch/m88k/include/frame.h')
-rw-r--r--sys/arch/m88k/include/frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/frame.h b/sys/arch/m88k/include/frame.h
index d935b052180..cf11fb2cd1d 100644
--- a/sys/arch/m88k/include/frame.h
+++ b/sys/arch/m88k/include/frame.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: frame.h,v 1.3 2007/01/13 22:00:56 miod Exp $ */
+/* $OpenBSD: frame.h,v 1.4 2007/11/15 21:24:12 miod Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* Mach Operating System
@@ -40,7 +40,7 @@ struct trapframe {
struct reg tf_regs;
register_t tf_vector; /* exception vector number */
register_t tf_mask; /* interrupt mask level */
- register_t tf_mode; /* interrupt mode */
+ register_t tf_flags; /* exception handling flags */
register_t tf_scratch1; /* reserved for use by locore */
register_t tf_ipfsr; /* P BUS status */
register_t tf_dpfsr; /* P BUS status */