summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-02-05 22:52:49 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-02-05 22:52:49 +0000
commit2c4c9410edb13d2eb995816e7f5cd0e5f73a7575 (patch)
tree15568e3f1532e315baf88bece20dad6c97d2d651
parent8434114ac2ed622b10c6c13b82810598c4c8f692 (diff)
Provide a definition for pmap_wired_count.
-rw-r--r--sys/arch/mvme88k/include/pmap.h3
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) */