From 1a815644778420335f3bb543a7805ee6e968de3a Mon Sep 17 00:00:00 2001 From: matthias Date: Wed, 23 Oct 1996 07:30:57 +0000 Subject: [PATCH] * Declare reserve_dumppages and pmap_activate. --- sys/arch/pc532/include/pmap.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/arch/pc532/include/pmap.h b/sys/arch/pc532/include/pmap.h index 300fae71eea5..56c69fbc7aed 100644 --- a/sys/arch/pc532/include/pmap.h +++ b/sys/arch/pc532/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.10 1996/02/12 21:28:18 christos Exp $ */ +/* $NetBSD: pmap.h,v 1.11 1996/10/23 07:30:57 matthias Exp $ */ /* * Copyright (c) 1995 Charles M. Hannum. All rights reserved. @@ -159,6 +159,8 @@ struct pv_entry *pv_table; /* array of entries, one per page */ #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) #define pmap_update() tlbflush() +vm_offset_t reserve_dumppages __P((vm_offset_t)); + static __inline void pmap_clear_modify(vm_offset_t pa) { @@ -195,6 +197,9 @@ pmap_phys_address(int ppn) return ns532_ptob(ppn); } +struct pcb; +void pmap_activate __P((pmap_t, struct pcb *)); + #endif /* _KERNEL */ #endif /* _NS532_PMAP_H_ */