Commit cef0767f authored by Federico G. Schwindt's avatar Federico G. Schwindt

Don't mention minimum values twice

parent cd23a786
...@@ -110,9 +110,7 @@ struct parspec WRK_parspec[] = { ...@@ -110,9 +110,7 @@ struct parspec WRK_parspec[] = {
"\n" "\n"
"Do not set this higher than you have to, since excess " "Do not set this higher than you have to, since excess "
"worker threads soak up RAM and CPU and generally just get " "worker threads soak up RAM and CPU and generally just get "
"in the way of getting work done.\n" "in the way of getting work done.",
"\n"
"Minimum is 10 threads.",
DELAYED_EFFECT, DELAYED_EFFECT,
"5000", "threads" }, "5000", "threads" },
{ "thread_pool_min", tweak_thread_pool_min, &mgt_param.wthread_min, { "thread_pool_min", tweak_thread_pool_min, &mgt_param.wthread_min,
...@@ -131,9 +129,7 @@ struct parspec WRK_parspec[] = { ...@@ -131,9 +129,7 @@ struct parspec WRK_parspec[] = {
"Thread idle threshold.\n" "Thread idle threshold.\n"
"\n" "\n"
"Threads in excess of thread_pool_min, which have been idle " "Threads in excess of thread_pool_min, which have been idle "
"for at least this long, will be destroyed.\n" "for at least this long, will be destroyed.",
"\n"
"Minimum is 10 seconds.",
EXPERIMENTAL | DELAYED_EFFECT, EXPERIMENTAL | DELAYED_EFFECT,
"300", "seconds" }, "300", "seconds" },
{ "thread_pool_destroy_delay", { "thread_pool_destroy_delay",
...@@ -141,9 +137,7 @@ struct parspec WRK_parspec[] = { ...@@ -141,9 +137,7 @@ struct parspec WRK_parspec[] = {
"0.01", NULL, "0.01", NULL,
"Wait this long after destroying a thread.\n" "Wait this long after destroying a thread.\n"
"\n" "\n"
"This controls the decay of thread pools when idle(-ish).\n" "This controls the decay of thread pools when idle(-ish).",
"\n"
"Minimum is 0.01 seconds.",
EXPERIMENTAL | DELAYED_EFFECT, EXPERIMENTAL | DELAYED_EFFECT,
"1", "seconds" }, "1", "seconds" },
{ "thread_pool_add_delay", { "thread_pool_add_delay",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment