summaryrefslogtreecommitdiff
path: root/sql/sys_vars.cc
diff options
context:
space:
mode:
authorBjorn Munch <bjorn.munch@oracle.com>2010-09-01 15:49:43 +0200
committerBjorn Munch <bjorn.munch@oracle.com>2010-09-01 15:49:43 +0200
commit71c0fde0975f262e729d0b4d084b14920c3e975d (patch)
treea0bd3f71fa30f2c02ec4d33b4d66656952002911 /sql/sys_vars.cc
parent1f95aa82f1d1df134e9f900612d3588be259e16c (diff)
parent7bd808548ee52e597cb444a2ef36c593d81fce0b (diff)
downloadmariadb-git-71c0fde0975f262e729d0b4d084b14920c3e975d.tar.gz
merge from 5.5
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 f63a43ccd76..ca3447dcc82 100644
--- a/sql/sys_vars.cc
+++ b/sql/sys_vars.cc
@@ -1673,19 +1673,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));