diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2016-06-21 19:20:11 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2016-06-21 19:20:11 +0200 |
commit | 69f1a3215e5062eb6c06ed35ec38e1d824efbef6 (patch) | |
tree | a2f65c36cf7cf5254bb63389d1102ab53b0c805f /sql/sql_class.h | |
parent | 911af69d1e13e5dff43b550da19d3d4a0ae07e96 (diff) | |
download | mariadb-git-69f1a3215e5062eb6c06ed35ec38e1d824efbef6.tar.gz |
Replace dynamic loading of mysqld.exe data for plugins, replace with MYSQL_PLUGIN_IMPORT
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 46eeeceb112..799a6088d3f 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -1094,8 +1094,8 @@ typedef struct st_xid_state { uint rm_error; } XID_STATE; -extern mysql_mutex_t LOCK_xid_cache; -extern HASH xid_cache; +extern MYSQL_PLUGIN_IMPORT mysql_mutex_t LOCK_xid_cache; +extern MYSQL_PLUGIN_IMPORT HASH xid_cache; bool xid_cache_init(void); void xid_cache_free(void); XID_STATE *xid_cache_search(XID *xid); |