diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 20:46:20 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 20:46:20 +0000 |
commit | 693af0532b09de7c3d3f56c40ddcc1f5f8cf83a4 (patch) | |
tree | 0eb53756dfd4505bb539bcdd03ed15a525f67f37 /sys/arch/mvme88k/include/proc.h | |
parent | 4fb4310cdabdf5a1054be0bd3f5a793c5198bbc6 (diff) |
Adding support for MVME188 and MVME197
Diffstat (limited to 'sys/arch/mvme88k/include/proc.h')
-rw-r--r-- | sys/arch/mvme88k/include/proc.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sys/arch/mvme88k/include/proc.h b/sys/arch/mvme88k/include/proc.h index 31acf460704..8dbe04ff142 100644 --- a/sys/arch/mvme88k/include/proc.h +++ b/sys/arch/mvme88k/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.5 1999/05/29 04:41:45 smurph Exp $ */ +/* $OpenBSD: proc.h,v 1.6 1999/09/27 20:46:19 smurph Exp $ */ /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -43,7 +43,7 @@ * @(#)proc.h 8.1 (Berkeley) 6/11/93 * * from: Header: proc.h,v 1.6 92/11/26 02:04:41 torek Exp (LBL) - * $Id: proc.h,v 1.5 1999/05/29 04:41:45 smurph Exp $ + * $Id: proc.h,v 1.6 1999/09/27 20:46:19 smurph Exp $ */ #include <machine/pcb.h> @@ -53,9 +53,11 @@ * Machine-dependent part of the proc structure for VME1X7. */ struct mdproc { - struct trapframe *md_tf; /* trap/syscall registers */ - struct fpstate *md_fpstate; /* fpu state, if any; always resident */ - int md_upte[UPAGES]; /* ptes for mapping u page */ - int md_ss_addr; /* single step address for ptrace */ - int md_ss_instr; /* single step instruction for ptrace */ + struct trapframe *md_tf; /* trap/syscall registers */ + struct fpstate *md_fpstate; /* fpu state, if any; always resident */ + int md_upte[UPAGES]; /* ptes for mapping u page */ + unsigned md_ss_addr; /* single step address for ptrace */ + unsigned md_ss_instr; /* single step instruction for ptrace */ + unsigned md_ss_taken_addr; /* single step address for ptrace */ + unsigned md_ss_taken_instr; /* single step instruction for ptrace */ }; |