diff options
author | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-01-24 14:57:07 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-01-24 14:57:07 +0100 |
commit | 416b7144d50304a428938bb23848f2db8331824d (patch) | |
tree | cf41c3e31f5b1f30e1a7142f87d956c23663339d /include/mysql | |
parent | c6de041ebcf53ced34a4c22e9604eb40fa208feb (diff) | |
download | mariadb-git-416b7144d50304a428938bb23848f2db8331824d.tar.gz |
BUG#59549, Fix compiler errors on Windows, step 5
Diffstat (limited to 'include/mysql')
-rw-r--r-- | include/mysql/thread_pool_priv.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/mysql/thread_pool_priv.h b/include/mysql/thread_pool_priv.h index ec5eaecafa7..e9b729d6913 100644 --- a/include/mysql/thread_pool_priv.h +++ b/include/mysql/thread_pool_priv.h @@ -46,5 +46,10 @@ bool init_new_connection_handler_thread(); max_connections is needed to calculate the maximum number of threads that is allowed to be started by the thread pool. */ -extern ulong thread_created, max_connections; +extern MYSQL_PLUGIN_IMPORT ulong thread_created; +extern MYSQL_PLUGIN_IMPORT ulong max_connections; +extern MYSQL_PLUGIN_IMPORT mysql_cond_t COND_thread_count; +extern MYSQL_PLUGIN_IMPORT pthread_attr_t connection_attrib; +extern MYSQL_PLUGIN_IMPORT I_List<THD> threads; +extern MYSQL_PLUGIN_IMPORT PSI_thread_key key_thread_one_connection; #endif |