summaryrefslogtreecommitdiff
path: root/sql/repl_failsafe.h
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-10-09 20:56:24 -0600
committerunknown <sasha@mysql.sashanet.com>2001-10-09 20:56:24 -0600
commit83c04cfdda3c7003ec2a15bd6a4d84a187c6d3fd (patch)
tree58cc6265f722205aaca76380e2eb9137edfa1c05 /sql/repl_failsafe.h
parent8b209415ffbbcb1dfad4bbeb9893ac8a2d6f6d5c (diff)
downloadmariadb-git-83c04cfdda3c7003ec2a15bd6a4d84a187c6d3fd.tar.gz
Added rpl_status. This is a midway commit to be able to pull so I can save
myself a run of compile-pentium-debug. I have not even tried to compile the new code sql/Makefile.am: added repl_failsafe.* sql/mysqld.cc: added Rpl_status sql/sql_show.cc: added rpl_status sql/structs.h: rpl_status
Diffstat (limited to 'sql/repl_failsafe.h')
-rw-r--r--sql/repl_failsafe.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/repl_failsafe.h b/sql/repl_failsafe.h
new file mode 100644
index 00000000000..1f62da7b05e
--- /dev/null
+++ b/sql/repl_failsafe.h
@@ -0,0 +1,13 @@
+#ifndef REPL_FAILSAFE_H
+#define REPL_FAILSAFE_H
+
+typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
+ RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
+ RPL_RECOVERY_CAPTAIN,RPL_NULL} RPL_STATUS;
+extern RPL_STATUS rpl_status;
+
+extern pthread_mutex_t LOCK_rpl_status;
+extern pthread_cond_t COND_rpl_status;
+extern TYPELIB rpl_role_typelib, rpl_status_typelib;
+extern char* rpl_role_type[], *rpl_status_type;
+#endif