~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/repl_failsafe.h

  • Committer: Monty Taylor
  • Date: 2008-10-06 04:45:56 UTC
  • mfrom: (438.1.13 drizzle)
  • Revision ID: monty@inaugust.com-20081006044556-5urk8k3yhnnl3o1p
Merged in from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifdef HAVE_REPLICATION
21
 
 
22
20
#include <drizzled/server_includes.h>
23
21
 
24
22
typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
49
47
void end_slave_list();
50
48
int register_slave(THD* thd, uchar* packet, uint packet_length);
51
49
void unregister_slave(THD* thd, bool only_mine, bool need_mutex);
52
 
 
53
 
#endif /* HAVE_REPLICATION */