MXS-1848 monitor_[alloc|free]() -> monitor_[create|destroy]

As these will call the createInstance and destroyInstance functions
of the monitor, they are more appropriately named like this.
This commit is contained in:
Johan Wikman
2018-05-06 19:37:37 +03:00
parent 510eb7ec7c
commit 851cefefc6
5 changed files with 7 additions and 7 deletions

View File

@ -47,8 +47,8 @@ typedef enum
MONITOR_CONNECT_ATTEMPTS = 3
} monitor_timeouts_t;
MXS_MONITOR *monitor_alloc(const char *, const char *);
void monitor_free(MXS_MONITOR *);
MXS_MONITOR *monitor_create(const char *, const char *);
void monitor_destroy(MXS_MONITOR *);
void monitor_start(MXS_MONITOR *, const MXS_CONFIG_PARAMETER*);
void monitor_stop(MXS_MONITOR *);