summaryrefslogtreecommitdiff
path: root/sql/sql_repl.h
diff options
context:
space:
mode:
authorserg@serg.mylan <>2005-02-09 20:04:28 +0100
committerserg@serg.mylan <>2005-02-09 20:04:28 +0100
commitdb13afd89db4a415e2a77b0c200a1391ea2f03fe (patch)
treee67ca6abbf7a9ea5ce41fb7435ffae76dbde21c8 /sql/sql_repl.h
parentfb78bfebe4ee10e793b3971acb4a92d7e63fc6e3 (diff)
downloadmariadb-git-db13afd89db4a415e2a77b0c200a1391ea2f03fe.tar.gz
auto-ROLLBACK if binlog was not closed properly
auto-commit on Xid_log_event
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r--sql/sql_repl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h
index e336148379b..3ea14f260a7 100644
--- a/sql/sql_repl.h
+++ b/sql/sql_repl.h
@@ -36,7 +36,11 @@ extern I_List<i_string> binlog_do_db, binlog_ignore_db;
extern int max_binlog_dump_events;
extern my_bool opt_sporadic_binlog_dump_fail;
-#define KICK_SLAVE(thd) { pthread_mutex_lock(&(thd)->LOCK_delete); (thd)->awake(THD::NOT_KILLED); pthread_mutex_unlock(&(thd)->LOCK_delete); }
+#define KICK_SLAVE(thd) do { \
+ pthread_mutex_lock(&(thd)->LOCK_delete); \
+ (thd)->awake(THD::NOT_KILLED); \
+ pthread_mutex_unlock(&(thd)->LOCK_delete); \
+ } while(0)
int start_slave(THD* thd, MASTER_INFO* mi, bool net_report);
int stop_slave(THD* thd, MASTER_INFO* mi, bool net_report);