diff options
author | kib <kib@FreeBSD.org> | 2011-02-23 13:50:24 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2011-02-23 13:50:24 +0000 |
commit | b083c8ec9687960d7f3313cbef07ff435175721c (patch) | |
tree | 91875ecf2d862fbb0fc16782e7531c43ece7ad64 /sys/kern/kern_thread.c | |
parent | 5d87a422b4cda5d9ff1ec8e0bb1b36239d60e28e (diff) | |
download | FreeBSD-src-b083c8ec9687960d7f3313cbef07ff435175721c.zip FreeBSD-src-b083c8ec9687960d7f3313cbef07ff435175721c.tar.gz |
Move the max_threads_per_proc and max_threads_hits variables to the
file where they are used. Declare the kern.threads sysctl node at the
same location. Since no external use for the variables exists, make them
static.
Discussed with: dchagin
MFC after: 1 week
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r-- | sys/kern/kern_thread.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 7161a99..f0e8091 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -65,16 +65,6 @@ __FBSDID("$FreeBSD$"); */ static uma_zone_t thread_zone; -SYSCTL_NODE(_kern, OID_AUTO, threads, CTLFLAG_RW, 0, "thread allocation"); - -int max_threads_per_proc = 1500; -SYSCTL_INT(_kern_threads, OID_AUTO, max_threads_per_proc, CTLFLAG_RW, - &max_threads_per_proc, 0, "Limit on threads per proc"); - -int max_threads_hits; -SYSCTL_INT(_kern_threads, OID_AUTO, max_threads_hits, CTLFLAG_RD, - &max_threads_hits, 0, ""); - TAILQ_HEAD(, thread) zombie_threads = TAILQ_HEAD_INITIALIZER(zombie_threads); static struct mtx zombie_lock; MTX_SYSINIT(zombie_lock, &zombie_lock, "zombie lock", MTX_SPIN); |