~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/slave.h

  • Committer: Monty Taylor
  • Date: 2008-07-30 19:17:49 UTC
  • mto: (236.1.7 codestyle)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080730191749-xfjicbhw2qna3hs2
Removed excess AM_CPPFLAGS from the tree. Now the only thing that should be in the include path should be -I${top_srcdir} and -I${top_builddir}w

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#ifdef HAVE_REPLICATION
37
37
 
38
38
#include "log.h"
39
 
#include "my_list.h"
 
39
#include <mysys/my_list.h>
40
40
#include "rpl_filter.h"
41
41
#include "rpl_tblmap.h"
42
42
 
146
146
int32_t init_slave();
147
147
void init_slave_skip_errors(const char* arg);
148
148
bool flush_relay_log_info(Relay_log_info* rli);
149
 
int32_t register_slave_on_master(MYSQL* mysql);
 
149
int32_t register_slave_on_master(DRIZZLE *drizzle);
150
150
int32_t terminate_slave_threads(Master_info* mi, int32_t thread_mask,
151
151
                             bool skip_lock = 0);
152
152
int32_t start_slave_threads(bool need_slave_mutex, bool wait_for_start,
172
172
 
173
173
/* retrieve table from master and copy to slave*/
174
174
int32_t fetch_master_table(THD* thd, const char* db_name, const char* table_name,
175
 
                       Master_info* mi, MYSQL* mysql, bool overwrite);
 
175
                       Master_info* mi, DRIZZLE *drizzle, bool overwrite);
176
176
 
177
177
bool show_master_info(THD* thd, Master_info* mi);
178
178
bool show_binlog_info(THD* thd);