File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -2199,9 +2199,16 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
2199
2199
* Lists all the current tasks, along with their current state and stack
2200
2200
* usage high water mark.
2201
2201
*
2202
- * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or
2202
+ * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D') or
2203
2203
* suspended ('S').
2204
2204
*
2205
+ * The example of a human readable table generated by vTaskListTasks()
2206
+ * Task Name State Priority HighWaterMark Task ID
2207
+ * Task A X 2 67 2
2208
+ * Task B R 1 67 3
2209
+ * IDLE R 0 67 5
2210
+ * Tmr Svc B 6 137 6
2211
+ *
2205
2212
* PLEASE NOTE:
2206
2213
*
2207
2214
* This function is provided for convenience only, and is used by many of the
You can’t perform that action at this time.
0 commit comments