diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-14 20:25:26 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-14 20:25:26 +0000 |
commit | d468113ddc0c5ba8e16ecb9db979c3b98e031714 (patch) | |
tree | 7cdff44637fd7b9f5d0f433cdfd94a1a0e4fc6ea /sys/arch/mvme88k/include/proc.h | |
parent | 9e571f43f415bf69545d34b77b15070b97bd0397 (diff) |
Complete move to UVM virtual memory system. More header fixes.
Diffstat (limited to 'sys/arch/mvme88k/include/proc.h')
-rw-r--r-- | sys/arch/mvme88k/include/proc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/proc.h b/sys/arch/mvme88k/include/proc.h index 8dbe04ff142..7a5dbb54e3b 100644 --- a/sys/arch/mvme88k/include/proc.h +++ b/sys/arch/mvme88k/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.6 1999/09/27 20:46:19 smurph Exp $ */ +/* $OpenBSD: proc.h,v 1.7 2001/01/14 20:25:24 smurph Exp $ */ /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -43,9 +43,11 @@ * @(#)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.6 1999/09/27 20:46:19 smurph Exp $ + * $Id: proc.h,v 1.7 2001/01/14 20:25:24 smurph Exp $ */ +#ifndef __MACHINE_PROC_H__ +#define __MACHINE_PROC_H__ #include <machine/pcb.h> #include <machine/mmu.h> @@ -61,3 +63,5 @@ struct mdproc { unsigned md_ss_taken_addr; /* single step address for ptrace */ unsigned md_ss_taken_instr; /* single step instruction for ptrace */ }; +#endif __MACHINE_PROC_H__ + |