1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

A post-merge fix.

This commit is contained in:
unknown
2006-11-17 20:07:52 +03:00
parent 96b90824d4
commit 08df05560e
2 changed files with 5 additions and 6 deletions

View File

@ -63,11 +63,11 @@ Guardian::get_instance_state_name(enum_instance_state state)
Guardian::Guardian(Thread_registry *thread_registry_arg,
Instance_map *instance_map_arg,
uint monitoring_interval_arg)
:monitoring_interval(monitoring_interval_arg),
shutdown_requested(FALSE),
stopped(FALSE),
:stopped(FALSE),
monitoring_interval(monitoring_interval_arg),
thread_registry(thread_registry_arg),
instance_map(instance_map_arg)
instance_map(instance_map_arg),
shutdown_requested(FALSE)
{
pthread_mutex_init(&LOCK_guardian, 0);
pthread_cond_init(&COND_guardian, 0);

View File

@ -68,8 +68,7 @@ private:
/* Names are conventionally the same as in mysqld */
int check_connection();
int do_command();
int dispatch_command(enum enum_server_command command,
const char *text, uint len);
int dispatch_command(enum enum_server_command command, const char *text);
};
#endif // INCLUDES_MYSQL_INSTANCE_MANAGER_MYSQL_CONNECTION_H