mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
c507632e50
Compare #708. Now the tokenization of an input line is done by the shell itself. You may quote arguments with `"..."`. Empty arguments, supplied by `""` are preserved. Spaces in between arguments are squasheds; spaces inside quotes are preserved. You cannot partially quote an argument. You must not use - `cmd "abc`, - `cmd abc"def"`, or - `cmd "abc"def`.
15 lines
221 B
C
15 lines
221 B
C
|
|
/**
|
|
* @defgroup sys_ps PS
|
|
* @ingroup sys
|
|
* @brief Show list with all threads
|
|
*/
|
|
|
|
#ifndef __PS_H
|
|
#define __PS_H
|
|
|
|
void thread_print_all(void);
|
|
void _ps_handler(int argc, char **argv);
|
|
|
|
#endif /* __PS_H */
|