Improved debug CLI command interpreter to allow for commands with arguments

This commit is contained in:
Mark Riddoch
2013-06-20 13:21:37 +02:00
parent fc852eaada
commit e55631e60f
6 changed files with 270 additions and 57 deletions

View File

@ -136,6 +136,7 @@ extern void dcb_close(DCB *); /* Generic close functionality */
extern void printAllDCBs(); /* Debug to print all DCB in the system */
extern void printDCB(DCB *); /* Debug print routine */
extern void dprintAllDCBs(DCB *); /* Debug to print all DCB in the system */
extern void dprintDCB(DCB *, DCB *); /* Debug to print a DCB in the system */
extern const char *gw_dcb_state2string(int); /* DCB state to string */
extern void dcb_printf(DCB *, const char *, ...); /* DCB version of printf */