summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-09 04:26:41 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-09 04:26:41 +0000
commit8618c21ac5207dc121103c5fb43fd3457174e6ca (patch)
treee62c82cdb94bd9af77c17acb5c250d1cd8e441a2 /sys
parent581af3f0e739b119532f388160b021195f073d57 (diff)
Add KERN_MBSTAT
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/sysctl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 1557f870217..b7672171c7b 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.h,v 1.52 2002/06/08 23:32:14 angelos Exp $ */
+/* $OpenBSD: sysctl.h,v 1.53 2002/06/09 04:26:40 angelos Exp $ */
/* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */
/*
@@ -172,7 +172,8 @@ struct ctlname {
#define KERN_NFILES 56 /* int: number of open files */
#define KERN_TTYCOUNT 57 /* int: number of tty devices */
#define KERN_NUMVNODES 58 /* int: number of vnodes in use */
-#define KERN_MAXID 59 /* number of valid kern ids */
+#define KERN_MBSTAT 59 /* struct: mbuf statistics */
+#define KERN_MAXID 60 /* number of valid kern ids */
#define CTL_KERN_NAMES { \
{ 0, 0 }, \
@@ -234,6 +235,7 @@ struct ctlname {
{ "nfiles", CTLTYPE_INT }, \
{ "ttycount", CTLTYPE_INT }, \
{ "numvnodes", CTLTYPE_INT }, \
+ { "mbstat", CTLTYPE_STRUCT }, \
}
/*