1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

ps: thread_print_all() had the wrong module prefix

This commit is contained in:
Oleg Hahm 2015-04-17 10:02:54 +02:00
parent 32f901a142
commit 89b32aefe3
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
extern "C" {
#endif
void thread_print_all(void);
void ps(void);
int _ps_handler(int argc, char **argv);
#ifdef __cplusplus

View File

@ -38,7 +38,7 @@ const char *state_names[] = {
/**
* @brief Prints a list of running threads including stack usage to stdout.
*/
void thread_print_all(void)
void ps(void)
{
const char queued_name[] = {'_', 'Q'};
#ifdef DEVELHELP

View File

@ -25,7 +25,7 @@ int _ps_handler(int argc, char **argv)
(void) argc;
(void) argv;
thread_print_all();
ps();
return 0;
}