diff options
author | dyson <dyson@FreeBSD.org> | 1997-08-05 23:03:24 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-08-05 23:03:24 +0000 |
commit | e150d815cc119026d37033e4d248bca618241d26 (patch) | |
tree | 51c39f15c1039481928d7e6903acce92264fa17a /sys/vm/pmap.h | |
parent | 2649bd0b26a3cee5b9f258a754ccbd0e1990d37e (diff) | |
download | FreeBSD-src-e150d815cc119026d37033e4d248bca618241d26.zip FreeBSD-src-e150d815cc119026d37033e4d248bca618241d26.tar.gz |
Fixed the commit botch that was causing crashes soon after system
startup. Due to the error, the initialization of the zone for
pv_entries was missing. The system should be usable again.
Diffstat (limited to 'sys/vm/pmap.h')
-rw-r--r-- | sys/vm/pmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index f0eb1f1..2c9697a 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.22 1997/08/05 01:32:50 dyson Exp $ + * $Id: pmap.h,v 1.23 1997/08/05 22:07:21 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 */ |