diff --git a/sys/arch/i386/include/pmap.h b/sys/arch/i386/include/pmap.h index 35ff0a8c21fc..84d56ab65ef2 100644 --- a/sys/arch/i386/include/pmap.h +++ b/sys/arch/i386/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.49 2000/09/21 17:46:05 thorpej Exp $ */ +/* $NetBSD: pmap.h,v 1.50 2000/09/28 13:17:54 is Exp $ */ /* * @@ -353,6 +353,7 @@ extern int pmap_pg_g; /* do we support PG_G? */ #define pmap_kernel() (&kernel_pmap_store) #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) +#define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) #define pmap_update() tlbflush() #define pmap_clear_modify(pg) pmap_change_attrs(pg, 0, PG_M) diff --git a/sys/arch/pc532/include/pmap.h b/sys/arch/pc532/include/pmap.h index e047db37c4b9..c2e3c6fc83ec 100644 --- a/sys/arch/pc532/include/pmap.h +++ b/sys/arch/pc532/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.28 2000/07/18 12:45:50 matthias Exp $ */ +/* $NetBSD: pmap.h,v 1.29 2000/09/28 13:09:10 is Exp $ */ /* * @@ -351,6 +351,7 @@ extern int nkpde; /* current # of PDEs for kernel */ #define pmap_kernel() (&kernel_pmap_store) #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) +#define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) #define pmap_update() tlbflush() #define pmap_clear_modify(pg) pmap_change_attrs(pg, 0, PG_M)