summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorBrandon Creighton <bjc@cvs.openbsd.org>2000-10-09 22:57:43 +0000
committerBrandon Creighton <bjc@cvs.openbsd.org>2000-10-09 22:57:43 +0000
commitff5b68d4dc8eec86dee22d4ca3b6a669ada47007 (patch)
tree4e32406fd23f4ef9c10fa50dba522c4f421b9b47 /sys/arch
parent7ddbe719967d9bf73ff5025994683c979bd7a99e (diff)
save the right info in struct md_coredump
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/vax/include/pcb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/vax/include/pcb.h b/sys/arch/vax/include/pcb.h
index 6b14041d61c..da4b0e1de2d 100644
--- a/sys/arch/vax/include/pcb.h
+++ b/sys/arch/vax/include/pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcb.h,v 1.4 1997/05/29 00:04:45 niklas Exp $ */
+/* $OpenBSD: pcb.h,v 1.5 2000/10/09 22:57:42 bjc Exp $ */
/* $NetBSD: pcb.h,v 1.10 1996/02/02 18:08:26 mycroft Exp $ */
/*
@@ -36,7 +36,7 @@
#ifndef _VAX_PCB_H_
#define _VAX_PCB_H_
-#include <machine/trap.h>
+#include <machine/reg.h>
struct pcb {
@@ -64,9 +64,9 @@ struct pcb {
#define AST_MASK 0x07000000
#define AST_PCB 0x04000000
-/* machine-specific core dump; save trapframe */
+/* machine-specific core dump; save regs */
struct md_coredump {
- struct trapframe md_tf;
+ struct reg md_reg;
};
#endif /* _VAX_PCB_H_ */