From cfd82c260dc51a4aacdaec487e025a522c1a19fa Mon Sep 17 00:00:00 2001 From: armink Date: Fri, 12 Jan 2018 17:19:57 +0800 Subject: [PATCH] [Finsh] Add finsh thread name macro. --- components/finsh/shell.c | 2 +- components/finsh/shell.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 90792e0039..d1fadd7221 100644 --- a/components/finsh/shell.c +++ b/components/finsh/shell.c @@ -776,7 +776,7 @@ int finsh_system_init(void) rt_sem_init(&(shell->rx_sem), "shrx", 0, 0); result = rt_thread_init(&finsh_thread, - "tshell", + FINSH_THREAD_NAME, finsh_thread_entry, RT_NULL, &finsh_thread_stack[0], sizeof(finsh_thread_stack), FINSH_THREAD_PRIORITY, 10); diff --git a/components/finsh/shell.h b/components/finsh/shell.h index 51494cb07b..7d5dd47076 100644 --- a/components/finsh/shell.h +++ b/components/finsh/shell.h @@ -73,6 +73,10 @@ const char* finsh_get_prompt(void); #endif #endif /* FINSH_USING_AUTH */ +#ifndef FINSH_THREAD_NAME +#define FINSH_THREAD_NAME "tshell" +#endif + enum input_stat { WAIT_NORMAL, -- GitLab