mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
274 B
C
15 lines
274 B
C
#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", "Prints information about running threads.", _ps_handler},
|
|
#endif
|
|
{NULL, NULL, NULL}
|
|
};
|
|
|