summaryrefslogtreecommitdiff
path: root/sys/kern/subr_param.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-04-15 12:23:11 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-04-15 12:23:11 +0000
commite1d970f1811e5e1e9c912c032acdcec6521b2a6d (patch)
tree733a8aba038268bb9bbfe0becf82c0d69fb2477b /sys/kern/subr_param.c
parent52a3cde55dd89880b2996627881329b463f81a7a (diff)
Notes
Diffstat (limited to 'sys/kern/subr_param.c')
-rw-r--r--sys/kern/subr_param.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/subr_param.c b/sys/kern/subr_param.c
index 8c2e4c6ffafb..820fe010785a 100644
--- a/sys/kern/subr_param.c
+++ b/sys/kern/subr_param.c
@@ -65,7 +65,6 @@
int hz;
int tick;
-int tickadj; /* can adjust 30ms in 60s */
int maxusers; /* base tunable */
int maxproc; /* maximum # of processes */
int maxprocperuid; /* max # of procs per user */
@@ -100,7 +99,6 @@ init_param1(void)
hz = HZ;
TUNABLE_INT_FETCH("kern.hz", &hz);
tick = 1000000 / hz;
- tickadj = howmany(30000, 60 * hz); /* can adjust 30ms in 60s */
#ifdef VM_SWZONE_SIZE_MAX
maxswzone = VM_SWZONE_SIZE_MAX;