1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Replace dynamic loading of mysqld.exe data for plugins, replace with MYSQL_PLUGIN_IMPORT

This commit is contained in:
Vladislav Vaintroub
2016-06-21 19:20:11 +02:00
parent 911af69d1e
commit 69f1a3215e
8 changed files with 12 additions and 62 deletions

View File

@ -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);