From 3a88386aae51fb28da6e2f8556f4a69e906d3ef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Mon, 19 Jul 2021 04:07:50 +0300 Subject: [PATCH] Cli: rename stack free size to stack watermark (#589) --- applications/cli/cli_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/cli/cli_commands.c b/applications/cli/cli_commands.c index 89981384..8d43a34c 100644 --- a/applications/cli/cli_commands.c +++ b/applications/cli/cli_commands.c @@ -357,7 +357,7 @@ void cli_command_ps(Cli* cli, string_t args, void* context) { osThreadId_t threads_id[threads_num_max]; uint8_t thread_num = osThreadEnumerate(threads_id, threads_num_max); printf("%d threads in total:\r\n", thread_num); - printf("%-20s %-14s %-14s %s\r\n", "Name", "Stack start", "Stack alloc", "Stack free"); + printf("%-20s %-14s %-14s %s\r\n", "Name", "Stack start", "Stack alloc", "Stack watermark"); for(uint8_t i = 0; i < thread_num; i++) { TaskControlBlock* tcb = (TaskControlBlock*)threads_id[i]; printf(