diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 15:34:18 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 15:34:18 +0000 |
commit | c838246d36eaa84d99978e74064e65cd79f105d2 (patch) | |
tree | 32aa458f7004dd4b1fff908d2f899d08344202a5 /sys/arch/powerpc/include | |
parent | d8fc2211ac6dad4fe5c8f465ad7cfaee2ef87255 (diff) |
Make pmap_update functions into nops so that we can have a consistent
pmap_update API (right now it's nop).
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r-- | sys/arch/powerpc/include/pmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h index 363f4524663..dd75475f6e4 100644 --- a/sys/arch/powerpc/include/pmap.h +++ b/sys/arch/powerpc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.21 2001/11/06 02:55:51 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.22 2001/11/28 15:34:16 art Exp $ */ /* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -94,6 +94,7 @@ int ptebits(paddr_t pa, int bit); #define pmap_is_referenced(page) (ptebits(VM_PAGE_TO_PHYS(page), PTE_REF)) #define pmap_unwire(pm, va) #define pmap_phys_address(x) (x) +#define pmap_update() /* nothing */ #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) |