diff options
author | julian <julian@FreeBSD.org> | 2004-03-21 09:22:38 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2004-03-21 09:22:38 +0000 |
commit | 5e0a5420a9a8b9fa7ffa260414cb8c05384c384f (patch) | |
tree | 0f90d9d73375da41c5856d57dcc7f85fae02a795 /sys/kern/kern_thread.c | |
parent | cbd95cfcfc60e974ada9ad0bee3afd99dd7d7697 (diff) | |
download | FreeBSD-src-5e0a5420a9a8b9fa7ffa260414cb8c05384c384f.zip FreeBSD-src-5e0a5420a9a8b9fa7ffa260414cb8c05384c384f.tar.gz |
Massively up the (artificial) limit on system scope threads
in a process from 50 to 500
Also up the number of process scope threads allowed to be in the kernel
at one time from 150 to 1500 (per process)
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r-- | sys/kern/kern_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 1995204..2c7ddfe 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -74,11 +74,11 @@ static int thread_debug = 0; SYSCTL_INT(_kern_threads, OID_AUTO, debug, CTLFLAG_RW, &thread_debug, 0, "thread debug"); -static int max_threads_per_proc = 150; +static 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"); -static int max_groups_per_proc = 50; +static int max_groups_per_proc = 500; SYSCTL_INT(_kern_threads, OID_AUTO, max_groups_per_proc, CTLFLAG_RW, &max_groups_per_proc, 0, "Limit on thread groups per proc"); |