diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-11 02:01:46 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-11 02:01:46 +0000 |
commit | eb97c8cd859c34034f7cd89ef8f9df6dd5945ee3 (patch) | |
tree | 001e1a6359bedad566f4b61649f3a14ed9a05de8 | |
parent | 54ec4ac803b4008b00c68e4bd4a4fc1ec3f5e097 (diff) |
Lost IPv6 defines
-rw-r--r-- | sys/sys/malloc.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index 9d8bc240b3a..63d13ab7c45 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.h,v 1.17 1999/01/07 22:07:14 deraadt Exp $ */ +/* $OpenBSD: malloc.h,v 1.18 1999/01/11 02:01:45 niklas Exp $ */ /* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */ /* @@ -143,9 +143,12 @@ #define M_DIRADD 88 /* New directory entry */ #define M_MKDIR 89 /* New directory */ #define M_DIRREM 90 /* Directory entry deleted */ - #define M_VMPBUCKET 91 /* VM page buckets */ #define M_VMSWAP 92 /* VM swap structures */ +#define M_DISCQ 93 /* IPv6 discq */ +#define M_FRAGQ 94 /* IPv6 fragq */ +#define M_SECA 95 /* Sec Assoc */ +#define M_I6IFP 96 /* IPv6 if info */ #define M_TEMP 127 /* misc temporary data buffers */ #define M_LAST 128 /* Must be last type + 1 */ @@ -249,7 +252,7 @@ "IPv6 fragq", /* 94 M_FRAGQ */ \ "Sec Assoc", /* 95 M_SECA */ \ "IPv6 if info", /* 96 M_I6IFP */ \ - NULL, \ + "", /* 97 M_POOL */ \ NULL, NULL, NULL, NULL, NULL, \ NULL, NULL, NULL, NULL, NULL, \ NULL, NULL, NULL, NULL, NULL, \ |