Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-07-19 04:07:50 +0300
committerGitHub <noreply@github.com>2021-07-19 04:07:50 +0300
commit3a88386aae51fb28da6e2f8556f4a69e906d3ef2 (patch)
tree8be0f64c089d6f2f7cacc4dbfe824ecdbef8fa19 /applications/cli
parent66bd59b3cd1bc7c7e51725d03e5f8846c8e44074 (diff)
Cli: rename stack free size to stack watermark (#589)
Diffstat (limited to 'applications/cli')
-rw-r--r--applications/cli/cli_commands.c2
1 files changed, 1 insertions, 1 deletions
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(