mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
fix compilation w/o P_S
This commit is contained in:
parent
ca4dbcff69
commit
e577b5667a
2 changed files with 6 additions and 0 deletions
|
@ -79,7 +79,9 @@ struct st_partition_ft_info
|
|||
};
|
||||
|
||||
|
||||
#ifdef HAVE_PSI_MUTEX_INTERFACE
|
||||
extern PSI_mutex_key key_partition_auto_inc_mutex;
|
||||
#endif
|
||||
|
||||
/**
|
||||
Partition specific Handler_share.
|
||||
|
|
|
@ -17,9 +17,13 @@
|
|||
#include "semisync_master.h"
|
||||
#include "semisync_master_ack_receiver.h"
|
||||
|
||||
#ifdef HAVE_PSI_MUTEX_INTERFACE
|
||||
extern PSI_mutex_key key_LOCK_ack_receiver;
|
||||
extern PSI_cond_key key_COND_ack_receiver;
|
||||
#endif
|
||||
#ifdef HAVE_PSI_THREAD_INTERFACE
|
||||
extern PSI_thread_key key_thread_ack_receiver;
|
||||
#endif
|
||||
extern Repl_semi_sync_master repl_semisync;
|
||||
|
||||
/* Callback function of ack receive thread */
|
||||
|
|
Loading…
Reference in a new issue