diff options
author | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-10-09 22:55:36 +0000 |
---|---|---|
committer | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-10-09 22:55:36 +0000 |
commit | 7ddbe719967d9bf73ff5025994683c979bd7a99e (patch) | |
tree | 59477770df4540977869bc11a4a782f1a9becb2b /sys/arch | |
parent | 6831335e0e1d6c47d849e03055601bedf51e972f (diff) |
- remove vmapbuf/vunmapbuf dummy macros (we have these now)
also define VAX_NPTEPG (used by vmparam.h)
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/include/param.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 511da1a26e9..22e892c434c 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.12 2000/04/26 03:08:42 bjc Exp $ */ +/* $OpenBSD: param.h,v 1.13 2000/10/09 22:55:35 bjc Exp $ */ /* $NetBSD: param.h,v 1.39 1999/10/22 21:14:34 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -74,6 +74,7 @@ #define VAX_PGSHIFT 9 #define VAX_NBPG (1 << VAX_PGSHIFT) #define VAX_PGOFSET (VAX_NBPG - 1) +#define VAX_NPTEPG (VAX_NBPG / 4) #define KERNBASE 0x80000000 /* start of kernel virtual */ @@ -208,9 +209,6 @@ #define spl6() splx(0x16) #define spl7() splx(0x17) -#define vmapbuf(p,q) -#define vunmapbuf(p,q) - /* Prototype needed for delay() */ #ifndef _LOCORE void delay __P((int)); |