diff options
author | Michael Widenius <monty@askmonty.org> | 2009-03-18 04:14:22 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2009-03-18 04:14:22 +0200 |
commit | 4c83c570ed5122bd1f66f62365e4093e2259b226 (patch) | |
tree | c52695b9f817e55006435e4c9139cdbcd51a4823 /sql/scheduler.h | |
parent | c97f25a02fe4fc4033b285f54663f6fe4ecdcc7c (diff) | |
download | mariadb-git-4c83c570ed5122bd1f66f62365e4093e2259b226.tar.gz |
Added mariadb and mariadb-version as my.conf option tags
Fixed compiler error when configuring without --lib-event
include/mysql_version.h.in:
Added mariadb-'version' as a my.cnf option tag for mysqld
sql/mysqld.cc:
Added mariadb and mariadb-version as my.conf option tags
Diffstat (limited to 'sql/scheduler.h')
-rw-r--r-- | sql/scheduler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/scheduler.h b/sql/scheduler.h index c3610bdc07b..501fdd87bbf 100644 --- a/sql/scheduler.h +++ b/sql/scheduler.h @@ -82,7 +82,9 @@ void pool_of_threads_scheduler(scheduler_functions* func); #else #define HAVE_POOL_OF_THREADS 0 /* For easyer tests */ -#define pool_of_threads_scheduler(A) one_thread_per_connection_scheduler(A) +#define pool_of_threads_scheduler(A) \ + one_thread_per_connection_scheduler(A, &max_connections, \ + &connection_count) class thd_scheduler {}; |