diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-27 22:05:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-27 22:05:33 +0000 |
commit | de8a6b54fc1b9cc6e96a16bfcb7b264bc528de2c (patch) | |
tree | 6dd3ba3214bf1c7f20d4ef0fa25fa378ddb8b9c3 /sys/arch/hp300/include | |
parent | 20ad0e57e358941ebea88350e6200d9d2c1d3e73 (diff) |
Various pmap_k* optimizations, as well as uvm interface updates,
from NetBSD.
Soon to be found in other m68k pmap, this one is just a teaser to please art@.
Diffstat (limited to 'sys/arch/hp300/include')
-rw-r--r-- | sys/arch/hp300/include/pmap.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hp300/include/pmap.h b/sys/arch/hp300/include/pmap.h index 211f6827fb2..d08446a488f 100644 --- a/sys/arch/hp300/include/pmap.h +++ b/sys/arch/hp300/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.8 2001/08/18 20:50:18 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.9 2001/11/27 22:05:32 miod Exp $ */ /* $NetBSD: pmap.h,v 1.13 1997/06/10 18:58:19 veego Exp $ */ /* @@ -149,6 +149,8 @@ extern struct pv_entry *pv_table; /* array of entries, one per page */ #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) #define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) +#define pmap_update() /* empty */ + extern pt_entry_t *Sysmap; extern char *vmmap; /* map for mem, dumps, etc. */ |