From b490da236e72917c66c3e393f8847659594bcbbd Mon Sep 17 00:00:00 2001 From: zy Date: Wed, 6 Dec 2023 05:51:21 -0500 Subject: [PATCH] adjust output --- source/ucli/ucli-lib.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/ucli/ucli-lib.cc b/source/ucli/ucli-lib.cc index 34427b0..31d438a 100644 --- a/source/ucli/ucli-lib.cc +++ b/source/ucli/ucli-lib.cc @@ -175,13 +175,13 @@ void diag_printf_raw_stack(int pid, int ns_pid, const char *comm, static const char *sys_task_str(int sys_task) { switch (sys_task) { case 0: - return "USER TASK"; + return "USER_TASK"; case 1: - return "SYSTEM TASK"; + return "SYSTEM_TASK"; case 2: - return "IDLE TASK"; + return "IDLE_TASK"; default: - return "UNKNOWN TASK"; + return "UNKNOWN_TASK"; } }