Addition of argument types to the debug cli

Added commands to settign and clearign status bits in the servers
This commit is contained in:
Mark Riddoch
2013-06-25 20:15:57 +02:00
parent 66c130d8a4
commit 3338e9cdb0
3 changed files with 190 additions and 25 deletions

View File

@ -67,5 +67,8 @@ extern int server_free(SERVER *);
extern void printServer(SERVER *);
extern void printAllServers();
extern void dprintAllServers(DCB *);
extern void dprintServer(DCB *, SERVER *);
extern char *server_status(SERVER *);
extern void server_set_status(SERVER *, int);
extern void server_clear_status(SERVER *, int);
#endif