static int request_count;
/* Structure used to register/deregister a console handler with the OS */
+static int InstallConsoleHandler(void);
+static void RemoveConsoleHandler(void);
static int CommandLineInterpreter(scr_t screenID, const char *commandLine);
static CommandParser_t ConsoleHandler = {0, NULL, 0};
#define HANDLEDCOMMAND 0
static void mpm_term(void)
{
- UnRegisterConsoleCommand(&ConsoleHandler);
+ RemoveConsoleHandler();
wait_to_finish = 0;
}
NXThreadYield();
}
*/
- return 0;
+ return 1;
}
/*****************************************************************