Merge branch 'develop' into binlog_server_wait_data

This commit is contained in:
MassimilianoPinto
2016-08-25 09:37:15 +02:00

View File

@ -172,7 +172,7 @@ typedef struct monitor_servers
/** /**
* Representation of the running monitor. * Representation of the running monitor.
*/ */
typedef struct monitor struct monitor
{ {
char *name; /**< The name of the monitor module */ char *name; /**< The name of the monitor module */
char *user; /*< Monitor username */ char *user; /*< Monitor username */
@ -194,7 +194,7 @@ typedef struct monitor
void *handle; /**< Handle returned from startMonitor */ void *handle; /**< Handle returned from startMonitor */
size_t interval; /**< The monitor interval */ size_t interval; /**< The monitor interval */
struct monitor *next; /**< Next monitor in the linked list */ struct monitor *next; /**< Next monitor in the linked list */
} MONITOR; };
extern MONITOR *monitor_alloc(char *, char *); extern MONITOR *monitor_alloc(char *, char *);
extern void monitor_free(MONITOR *); extern void monitor_free(MONITOR *);