1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

added a seperate shellcommand to show candidates

This commit is contained in:
Stephan Arndt 2013-03-24 15:53:57 +01:00
parent 85211f8408
commit a7c0e325a7

View File

@ -59,12 +59,16 @@ void init(char *str){
void table(char *str){
thread_print_all();
}
void candidates(char *str){
show_candidates();
}
const shell_command_t shell_commands[] = {
{"init", "", init},
{"table", "", table},
{"cand", "", candidates},
{NULL, NULL, NULL}
};