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:
parent
32f901a142
commit
89b32aefe3
@ -26,7 +26,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void thread_print_all(void);
|
||||
void ps(void);
|
||||
int _ps_handler(int argc, char **argv);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -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
|
||||
|
@ -25,7 +25,7 @@ int _ps_handler(int argc, char **argv)
|
||||
(void) argc;
|
||||
(void) argv;
|
||||
|
||||
thread_print_all();
|
||||
ps();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user