Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm26/include Provide a pmap_resident_count() that ...



details:   https://anonhg.NetBSD.org/src/rev/8679748a360e
branches:  trunk
changeset: 509062:8679748a360e
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Apr 25 18:03:19 2001 +0000

description:
Provide a pmap_resident_count() that simply expands to 0.

diffstat:

 sys/arch/arm26/include/pmap.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r e4327c21162c -r 8679748a360e sys/arch/arm26/include/pmap.h
--- a/sys/arch/arm26/include/pmap.h     Wed Apr 25 17:54:07 2001 +0000
+++ b/sys/arch/arm26/include/pmap.h     Wed Apr 25 18:03:19 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.3 2000/12/27 18:38:50 bjh21 Exp $ */
+/* $NetBSD: pmap.h,v 1.4 2001/04/25 18:03:19 thorpej Exp $ */
 /*-
  * Copyright (c) 1997, 1998 Ben Harris
  * All rights reserved.
@@ -49,6 +49,8 @@
 
 extern boolean_t pmap_fault(pmap_t, vaddr_t, vm_prot_t);
 
+#define        pmap_resident_count(pmap)       0       /* XXX XXX XXX */
+
 /* Save on hassle and kernel VM */
 #define PMAP_MAP_POOLPAGE(pa)  ((vaddr_t)MEMC_PHYS_BASE + (pa))
 #define PMAP_UNMAP_POOLPAGE(va)        ((va) - (vaddr_t)MEMC_PHYS_BASE)



Home | Main Index | Thread Index | Old Index