* Declare reserve_dumppages and pmap_activate.

This commit is contained in:
matthias 1996-10-23 07:30:57 +00:00
parent 1731660b98
commit 1a81564477
1 changed files with 6 additions and 1 deletions

View File

@ -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_ */