Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Add M_PROP.



details:   https://anonhg.NetBSD.org/src/rev/8fa36fdea463
branches:  trunk
changeset: 515784:8fa36fdea463
user:      eeh <eeh%NetBSD.org@localhost>
date:      Thu Oct 04 19:00:44 2001 +0000

description:
Add M_PROP.

diffstat:

 sys/sys/malloc.h |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 7557501c5738 -r 8fa36fdea463 sys/sys/malloc.h
--- a/sys/sys/malloc.h  Thu Oct 04 18:58:04 2001 +0000
+++ b/sys/sys/malloc.h  Thu Oct 04 19:00:44 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: malloc.h,v 1.66 2001/09/10 10:09:36 fvdl Exp $ */
+/*     $NetBSD: malloc.h,v 1.67 2001/10/04 19:00:44 eeh Exp $  */
 
 /*
  * Copyright (c) 1987, 1993
@@ -174,7 +174,8 @@
 #define        M_1394DATA      117     /* IEEE 1394 data buffers */
 #define        M_PIPE          118     /* Pipe structures */
 #define M_AGP          119     /* AGP memory */
-#define        M_LAST          120     /* Must be last type + 1 */
+#define        M_PROP          120     /* Kernel properties structures */
+#define        M_LAST          121     /* Must be last type + 1 */
 
 #define        INITKMEMNAMES { \
        "free",         /* 0 M_FREE */ \
@@ -297,7 +298,8 @@
        "1394data",     /* 117 M_1394DATA */ \
        "pipe",         /* 118 M_PIPE */ \
        "AGP",          /* 119 M_AGP */ \
-       NULL,           /* 120 */ \
+       "prop",         /* 120 M_PROP */ \
+       NULL,           /* 121 */ \
 }
 
 struct kmemstats {



Home | Main Index | Thread Index | Old Index