summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1997-10-11 18:31:40 +0000
committerphk <phk@FreeBSD.org>1997-10-11 18:31:40 +0000
commit645e7b2ab6676a2a3a05a59a053929d3b7732b4d (patch)
tree99b56513fb3f54852886a3d0eb7c8b3e1a9f2602 /sys/amd64
parenta14e4dea11b5b83147d62a7cb7dacdec1ea19e15 (diff)
downloadFreeBSD-src-645e7b2ab6676a2a3a05a59a053929d3b7732b4d.zip
FreeBSD-src-645e7b2ab6676a2a3a05a59a053929d3b7732b4d.tar.gz
Distribute and statizice a lot of the malloc M_* types.
Substantial input from: bde
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/pmap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index f5a2ad8..676d89c 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
- * $Id: pmap.c,v 1.161 1997/09/07 01:15:13 dyson Exp $
+ * $Id: pmap.c,v 1.162 1997/09/21 05:50:02 dyson Exp $
*/
/*
@@ -1504,7 +1504,8 @@ pmap_destroy(pmap)
count = --pmap->pm_count;
if (count == 0) {
pmap_release(pmap);
- free((caddr_t) pmap, M_VMPMAP);
+ panic("destroying a pmap is not yet implemented");
+ /* free((caddr_t) pmap, M_VMPMAP); */
}
}
OpenPOWER on IntegriCloud