diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-24 18:11:49 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-24 18:11:49 +0000 |
commit | 68a8441ee98761506335b685cd9f207f4801fa1b (patch) | |
tree | 4afc12baded0d777293e23a7b8321128cbb1d2ab /sys/arch/i386 | |
parent | 1d7ec735995fd8515a21992d85e70420e0091e65 (diff) |
Remove an #ifdef PMAP_NEW so userland (specifically ps) doesn't
have to define PMAP_NEW all over the place. This means there is an
unused entry in struct pcb for pmap.old but that's going away (and
it doesn't hurt anything).
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/include/pcb.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/i386/include/pcb.h b/sys/arch/i386/include/pcb.h index 7ab2d4acb26..18d135096cc 100644 --- a/sys/arch/i386/include/pcb.h +++ b/sys/arch/i386/include/pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcb.h,v 1.6 2001/03/22 23:36:52 niklas Exp $ */ +/* $OpenBSD: pcb.h,v 1.7 2001/03/24 18:11:48 millert Exp $ */ /* $NetBSD: pcb.h,v 1.21 1996/01/08 13:51:42 mycroft Exp $ */ /*- @@ -79,9 +79,7 @@ struct pcb { int vm86_eflags; /* virtual eflags for vm86 mode */ int vm86_flagmask; /* flag mask for vm86 mode */ void *vm86_userp; /* XXX performance hack */ -#ifdef PMAP_NEW struct pmap *pcb_pmap; /* back pointer to our pmap */ -#endif u_long pcb_iomap[NIOPORTS/32]; /* I/O bitmap */ u_char pcb_iomap_pad; /* required; must be 0xff, says intel */ }; |