From 73ffa498ecbfe25c841c8ce148ea64b3f1251fbd Mon Sep 17 00:00:00 2001 From: pk Date: Thu, 23 Jul 1998 20:34:59 +0000 Subject: [PATCH] Define M_POOL. --- sys/sys/malloc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index ff855dd88d90..bed07ed286f1 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -1,4 +1,4 @@ -/* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */ +/* $NetBSD: malloc.h,v 1.40 1998/07/23 20:34:59 pk Exp $ */ /* * Copyright (c) 1987, 1993 @@ -138,7 +138,8 @@ #define M_IPFLOW 86 /* IP flow entries */ #define M_USB 87 /* USB general */ #define M_USBDEV 88 /* USB permanent */ -#define M_LAST 89 /* Must be last type + 1 */ +#define M_POOL 89 /* memory pool structs */ +#define M_LAST 90 /* Must be last type + 1 */ #define INITKMEMNAMES { \ "free", /* 0 M_FREE */ \