aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/pmap.h
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-08-05 01:32:52 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-08-05 01:32:52 +0000
commitf2adc8bb27b178a22b7121c2495782b923119be9 (patch)
treea9b516409920cd3dbb01a9258811a7ca957abae9 /sys/vm/pmap.h
parentb25b051bfdcb05cc0b4e75d51722665dfd37c119 (diff)
downloadsrc-f2adc8bb27b178a22b7121c2495782b923119be9.tar.gz
src-f2adc8bb27b178a22b7121c2495782b923119be9.zip
Modify pmap to use our new memory allocator. Also, change the vm_map_entry
allocations to be interrupt safe.
Notes
Notes: svn path=/head/; revision=27905
Diffstat (limited to 'sys/vm/pmap.h')
-rw-r--r--sys/vm/pmap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h
index fa9c1bf55ad5..c27110cae9bf 100644
--- a/sys/vm/pmap.h
+++ b/sys/vm/pmap.h
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: pmap.h,v 1.20 1997/04/13 01:48:33 dyson Exp $
+ * $Id: pmap.h,v 1.21 1997/07/17 04:34:02 dyson Exp $
*/
/*
@@ -131,6 +131,7 @@ void pmap_swapout_proc __P((struct proc *p));
void pmap_swapin_proc __P((struct proc *p));
void pmap_activate __P((struct proc *p));
vm_offset_t pmap_addr_hint __P((vm_object_t obj, vm_offset_t addr, vm_size_t size));
+void pmap_init2 __P((void));
#endif /* KERNEL */