diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-05 22:52:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-05 22:52:49 +0000 |
commit | 2c4c9410edb13d2eb995816e7f5cd0e5f73a7575 (patch) | |
tree | 15568e3f1532e315baf88bece20dad6c97d2d651 | |
parent | 8434114ac2ed622b10c6c13b82810598c4c8f692 (diff) |
Provide a definition for pmap_wired_count.
-rw-r--r-- | sys/arch/mvme88k/include/pmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/include/pmap.h b/sys/arch/mvme88k/include/pmap.h index ab3fea00c1d..1e0246cdfc8 100644 --- a/sys/arch/mvme88k/include/pmap.h +++ b/sys/arch/mvme88k/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.24 2001/12/24 04:12:37 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.25 2002/02/05 22:52:48 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991 Carnegie Mellon University @@ -72,6 +72,7 @@ extern caddr_t vmmap; #define pmap_kernel() (&kernel_pmap_store) #define pmap_resident_count(pmap) ((pmap)->stats.resident_count) +#define pmap_wired_count(pmap) ((pmap)->stats.wired_count) #define pmap_phys_address(frame) ((paddr_t)(ptoa(frame))) #define pmap_update(pmap) /* nothing (yet) */ |