diff options
Diffstat (limited to 'sys/arch/mvme88k/include/proc.h')
-rw-r--r-- | sys/arch/mvme88k/include/proc.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/include/proc.h b/sys/arch/mvme88k/include/proc.h index a6b75090343..d67741204dc 100644 --- a/sys/arch/mvme88k/include/proc.h +++ b/sys/arch/mvme88k/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.10 2003/12/25 00:26:25 miod Exp $ */ +/* $OpenBSD: proc.h,v 1.11 2004/01/12 07:46:16 miod Exp $ */ /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -43,20 +43,22 @@ #ifndef __MACHINE_PROC_H__ #define __MACHINE_PROC_H__ + #include <machine/pcb.h> -#include <machine/mmu.h> /* - * Machine-dependent part of the proc structure for VME1X7. + * Machine-dependent part of the proc structure for mvme88k. */ 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 */ + 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 */ }; + #endif /* __MACHINE_PROC_H__ */ |