[Finsh] Add finsh thread name macro.
This commit is contained in:
parent
f54c8bab3c
commit
cfd82c260d
|
@ -776,7 +776,7 @@ int finsh_system_init(void)
|
||||||
|
|
||||||
rt_sem_init(&(shell->rx_sem), "shrx", 0, 0);
|
rt_sem_init(&(shell->rx_sem), "shrx", 0, 0);
|
||||||
result = rt_thread_init(&finsh_thread,
|
result = rt_thread_init(&finsh_thread,
|
||||||
"tshell",
|
FINSH_THREAD_NAME,
|
||||||
finsh_thread_entry, RT_NULL,
|
finsh_thread_entry, RT_NULL,
|
||||||
&finsh_thread_stack[0], sizeof(finsh_thread_stack),
|
&finsh_thread_stack[0], sizeof(finsh_thread_stack),
|
||||||
FINSH_THREAD_PRIORITY, 10);
|
FINSH_THREAD_PRIORITY, 10);
|
||||||
|
|
|
@ -73,6 +73,10 @@ const char* finsh_get_prompt(void);
|
||||||
#endif
|
#endif
|
||||||
#endif /* FINSH_USING_AUTH */
|
#endif /* FINSH_USING_AUTH */
|
||||||
|
|
||||||
|
#ifndef FINSH_THREAD_NAME
|
||||||
|
#define FINSH_THREAD_NAME "tshell"
|
||||||
|
#endif
|
||||||
|
|
||||||
enum input_stat
|
enum input_stat
|
||||||
{
|
{
|
||||||
WAIT_NORMAL,
|
WAIT_NORMAL,
|
||||||
|
|
Loading…
Reference in New Issue