parent
2e94065cd9
commit
07681a1914
@ -1,10 +1,14 @@
|
||||
#include <shell.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef MODULE_PS
|
||||
extern void _ps_handler(char* unnused);
|
||||
#endif
|
||||
|
||||
const shell_command_t _shell_command_list[] = {
|
||||
#ifdef MODULE_PS
|
||||
{"ps", ps_handler},
|
||||
{"ps", "Prints information about running threads.", _ps_handler},
|
||||
#endif
|
||||
{NULL, NULL}
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue