mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Update wsrep-lib
This commit is contained in:
parent
033f8d13ce
commit
26d913a743
3 changed files with 3 additions and 3 deletions
|
@ -74,7 +74,7 @@ bool Wsrep_client_service::interrupted(
|
|||
Locking order is:
|
||||
1) LOCK_thd_data
|
||||
2) LOCK_thd_kill */
|
||||
mysql_mutex_assert_owner(static_cast<mysql_mutex_t*>(lock.mutex().native()));
|
||||
mysql_mutex_assert_owner(static_cast<mysql_mutex_t*>(lock.mutex()->native()));
|
||||
mysql_mutex_lock(&m_thd->LOCK_thd_kill);
|
||||
bool ret= (m_thd->killed != NOT_KILLED);
|
||||
if (ret)
|
||||
|
|
|
@ -44,7 +44,7 @@ public:
|
|||
|
||||
void wait(wsrep::unique_lock<wsrep::mutex>& lock)
|
||||
{
|
||||
mysql_mutex_t* mutex= static_cast<mysql_mutex_t*>(lock.mutex().native());
|
||||
mysql_mutex_t* mutex= static_cast<mysql_mutex_t*>(lock.mutex()->native());
|
||||
mysql_cond_wait(&m_cond, mutex);
|
||||
}
|
||||
private:
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 515ac816f98329c0227d0060cc9339c889810834
|
||||
Subproject commit a93955ddeef5989505cbb3a9f8bb124341462569
|
Loading…
Add table
Reference in a new issue