diff options
author | jmg <jmg@FreeBSD.org> | 2006-04-26 19:42:38 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2006-04-26 19:42:38 +0000 |
commit | af1ed256ae695406d2ce714497466ba4f7ff803a (patch) | |
tree | 870a720876ecb418e239c674375819c87b64f2b3 /sys/kern | |
parent | 4a65e282e55d9f004b816c9e301ac17047c63d9a (diff) | |
download | FreeBSD-src-af1ed256ae695406d2ce714497466ba4f7ff803a.zip FreeBSD-src-af1ed256ae695406d2ce714497466ba4f7ff803a.tar.gz |
move remaining sysctl into the kern.sched tree...
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/sched_4bsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c index 3733dec..3c27ee2 100644 --- a/sys/kern/sched_4bsd.c +++ b/sys/kern/sched_4bsd.c @@ -406,7 +406,7 @@ roundrobin(void *arg) /* decay 95% of `ke_pctcpu' in 60 seconds; see CCPU_SHIFT before changing */ static fixpt_t ccpu = 0.95122942450071400909 * FSCALE; /* exp(-1/20) */ -SYSCTL_INT(_kern, OID_AUTO, ccpu, CTLFLAG_RD, &ccpu, 0, ""); +SYSCTL_INT(_kern_sched, OID_AUTO, ccpu, CTLFLAG_RD, &ccpu, 0, ""); /* * If `ccpu' is not equal to `exp(-1/20)' and you still want to use the |