Skip to content

Commit c3bec5b

Browse files
committed
Merge branch 'example/console_task_column_name' into 'master'
example(console): print column name for tasks. See merge request idf/esp-idf!1948
2 parents 7d13e3f + 10ab4c0 commit c3bec5b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples/system/console/main/cmd_system.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ static int tasks_info(int argc, char** argv)
9494
ESP_LOGE(__func__, "failed to allocate buffer for vTaskList output");
9595
return 1;
9696
}
97+
fputs("Task Name\tStatus\tPrio\tHWM\tTask Number\n", stdout);
9798
vTaskList(task_list_buffer);
9899
fputs(task_list_buffer, stdout);
99100
free(task_list_buffer);

0 commit comments

Comments
 (0)