diff options
author | 2001-03-24 18:11:48 +0000 | |
---|---|---|
committer | 2001-03-24 18:11:48 +0000 | |
commit | 0d2c68929623203af456961f29ccde9eeae6ac16 (patch) | |
tree | 30a13edff52a8c8c13190f3f6c23108dfc678610 | |
parent | unused; remove dup comments. ok markus@ (diff) | |
download | wireguard-openbsd-0d2c68929623203af456961f29ccde9eeae6ac16.tar.xz wireguard-openbsd-0d2c68929623203af456961f29ccde9eeae6ac16.zip |
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).
-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 */ }; |