diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-27 22:23:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-27 22:23:46 +0000 |
commit | b08f08f12265c666e68d687fa91daf5a693e9d99 (patch) | |
tree | a8ae7797582f6778a0716ddf1caaf6ead62b3ac6 /sys | |
parent | c356b59c59c09b663e2373cbf77a6ce3962c1694 (diff) |
M_VMPVENT bites the dust; requested by art@ long ago.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/malloc.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index c9eb7777466..b6c5970d5d4 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.h,v 1.63 2002/12/20 06:00:53 art Exp $ */ +/* $OpenBSD: malloc.h,v 1.64 2003/01/27 22:23:45 miod Exp $ */ /* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */ /* @@ -93,8 +93,7 @@ #define M_SEM 31 /* SVID compatible semaphores */ /* 32-33 - free */ #define M_VMPMAP 34 /* VM pmap */ -#define M_VMPVENT 35 /* VM phys-virt mapping entry */ -/* 36-37 - free */ +/* 35-37 - free */ #define M_FILE 38 /* Open file structure */ #define M_FILEDESC 39 /* Open file descriptor table */ #define M_LOCKF 40 /* Byte-range locking structures */ @@ -205,7 +204,7 @@ NULL, \ NULL, \ "VM pmap", /* 34 M_VMPMAP */ \ - "VM pvmap", /* 35 M_VMPVENT */ \ + NULL, /* 35 */ \ NULL, /* 36 */ \ NULL, /* 37 */ \ "file", /* 38 M_FILE */ \ |