From 1aed3858acb4adfb0e76ba845adab3bcf0d3e50b Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sun, 23 Sep 2018 11:37:33 -0400 Subject: [PATCH] logging: rename log_process_thread to logging Keep the name short to make usuable when thread names are enabled. Signed-off-by: Anas Nashif --- subsys/logging/log_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/logging/log_core.c b/subsys/logging/log_core.c index fd41cb090fc..41799ef1aef 100644 --- a/subsys/logging/log_core.c +++ b/subsys/logging/log_core.c @@ -491,7 +491,7 @@ static void log_process_thread_func(void *dummy1, void *dummy2, void *dummy3) } } -K_THREAD_DEFINE(log_process_thread, CONFIG_LOG_PROCESS_THREAD_STACK_SIZE, +K_THREAD_DEFINE(logging, CONFIG_LOG_PROCESS_THREAD_STACK_SIZE, log_process_thread_func, NULL, NULL, NULL, CONFIG_LOG_PROCESS_THREAD_PRIO, 0, K_NO_WAIT); #else