summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-03 03:52:13 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-03 03:52:13 +0000
commit4b2c891e494d37b27dfcef85df6619bd9cc04cf9 (patch)
tree50520daa0849f9092aee92dfcd8caa75e97d9660 /sys
parentd221f3431b844d6962ae59dc5a3b7a256a13b041 (diff)
Add KERN_FSCALE and KERN_CCPU.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/sysctl.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 2710dbbf2b9..fab71a52cda 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.h,v 1.37 2001/05/14 07:11:35 angelos Exp $ */
+/* $OpenBSD: sysctl.h,v 1.38 2001/06/03 03:52:12 angelos Exp $ */
/* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */
/*
@@ -158,7 +158,9 @@ struct ctlname {
#define KERN_FORKSTAT 42 /* struct: fork statistics */
#define KERN_NSELCOLL 43 /* int: select(2) collisions */
#define KERN_TTY 44 /* node: tty information */
-#define KERN_MAXID 45 /* number of valid kern ids */
+#define KERN_CCPU 45 /* int: ccpu */
+#define KERN_FSCALE 46 /* int: fscale */
+#define KERN_MAXID 47 /* number of valid kern ids */
#define CTL_KERN_NAMES { \
{ 0, 0 }, \
@@ -206,6 +208,8 @@ struct ctlname {
{ "forkstat", CTLTYPE_STRUCT }, \
{ "nselcoll", CTLTYPE_INT }, \
{ "tty", CTLTYPE_NODE }, \
+ { "ccpu", CTLTYPE_INT }, \
+ { "fscale", CTLTYPE_INT }, \
}
/*