diff options
| author | zy <[email protected]> | 2023-12-06 05:51:21 -0500 |
|---|---|---|
| committer | zy <[email protected]> | 2023-12-06 05:51:21 -0500 |
| commit | b490da236e72917c66c3e393f8847659594bcbbd (patch) | |
| tree | 1d10d78441974a3715653aca86e8e28cf951ebeb | |
| parent | 4ad00b3ff9e9fd0927e788ea0aa29397bf46b1b8 (diff) | |
adjust output
| -rw-r--r-- | source/ucli/ucli-lib.cc | 8 |
1 files 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"; } } |
