summaryrefslogtreecommitdiff
path: root/sql/sys_vars.cc
diff options
context:
space:
mode:
authorMats Kindahl <mats.kindahl@oracle.com>2010-08-16 14:50:27 +0200
committerMats Kindahl <mats.kindahl@oracle.com>2010-08-16 14:50:27 +0200
commitcd347705585b99c242efaf63550ace6819610795 (patch)
tree60ab98cb19a6a71445b167b4cbc5308f59767cc9 /sql/sys_vars.cc
parent5cb0ccebf3115d752a04b0eb4d2e153e3ac102f6 (diff)
parent71553c2c9db3c4c27973f12461b986c59e1dabfb (diff)
downloadmariadb-git-cd347705585b99c242efaf63550ace6819610795.tar.gz
Merging with mysql-5.5-stage.
Diffstat (limited to 'sql/sys_vars.cc')
-rw-r--r--sql/sys_vars.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc
index 320e6d9253e..9294c7b89a4 100644
--- a/sql/sys_vars.cc
+++ b/sql/sys_vars.cc
@@ -1669,19 +1669,13 @@ static Sys_var_ulong Sys_trans_prealloc_size(
static const char *thread_handling_names[]=
{
- "one-thread-per-connection", "no-threads",
-#if HAVE_POOL_OF_THREADS == 1
- "pool-of-threads",
-#endif
+ "one-thread-per-connection", "no-threads", "loaded-dynamically",
0
};
static Sys_var_enum Sys_thread_handling(
"thread_handling",
"Define threads usage for handling queries, one of "
- "one-thread-per-connection, no-threads"
-#if HAVE_POOL_OF_THREADS == 1
- ", pool-of-threads"
-#endif
+ "one-thread-per-connection, no-threads, loaded-dynamically"
, READ_ONLY GLOBAL_VAR(thread_handling), CMD_LINE(REQUIRED_ARG),
thread_handling_names, DEFAULT(0));