diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-09 15:31:29 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-09 15:31:29 +0000 |
commit | bef5c1203e8b821e3eeb308fe0fec1cd4a4b82aa (patch) | |
tree | bb24a5db88cb91fcf4803d90a1e26c911df635ac /sys/arch/vax/include | |
parent | 0a2e27bb7e82e11d8f2582564af9ba749623642e (diff) |
More sync to NetBSD.
- Change pmap_change_wiring to pmap_unwire because it's only called that way.
- Remove pmap_pageable because it's seldom implemented and when it is, it's
either almost useless or incorrect. The same information is already passed
to the pmap anyway by pmap_enter and pmap_unwire.
Diffstat (limited to 'sys/arch/vax/include')
-rw-r--r-- | sys/arch/vax/include/param.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 3762edc6f21..ea94b91ea62 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.14 2001/05/05 20:56:56 art Exp $ */ +/* $OpenBSD: param.h,v 1.15 2001/05/09 15:31:27 art 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. @@ -161,7 +161,6 @@ #define ovbcopy(x,y,z) bcopy(x, y, z) #ifdef _KERNEL -#define pmap_pageable(a,b,c,d) /* Dont do anything */ #ifndef lint #define splx(reg) \ ({ \ |