diff options
author | Sachin Setiya <sachin.setiya@mariadb.com> | 2017-02-22 18:25:17 +0530 |
---|---|---|
committer | Sachin Setiya <sachin.setiya@mariadb.com> | 2017-02-23 11:57:27 +0530 |
commit | ba92f6ceb2eec0bd2952e7b65bae4a44bfa2745b (patch) | |
tree | aa268897b0c1231d77022b07198954665031722b /sql/sql_class.cc | |
parent | ec9a48112b3caac39fb133d524f499172942d43a (diff) | |
download | mariadb-git-bb-5.5-mdev-12109.tar.gz |
Mdev-12109 Merge 5.5.55 to 5.5-galerabb-5.5-mdev-12109
Merged https://github.com/codership/mysql-wsrep/tree/5.5 up to commit 03c22517c87.
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index 7905daa235d..fd2dec5a146 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -853,11 +853,11 @@ extern "C" wsrep_ws_handle_t* wsrep_thd_ws_handle(THD *thd) return &thd->wsrep_ws_handle; } -extern "C"void wsrep_thd_LOCK(THD *thd) +extern "C" void wsrep_thd_LOCK(THD *thd) { mysql_mutex_lock(&thd->LOCK_wsrep_thd); } -extern "C"void wsrep_thd_UNLOCK(THD *thd) +extern "C" void wsrep_thd_UNLOCK(THD *thd) { mysql_mutex_unlock(&thd->LOCK_wsrep_thd); } |