@@ -2199,24 +2199,25 @@ 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 running ('X'), blocked ('B'), ready ('R'), deleted ('D') or
2203
- * suspended ('S').
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
2202
+ * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D')
2203
+ * or suspended ('S').
2211
2204
*
2212
2205
* PLEASE NOTE:
2213
2206
*
2214
2207
* This function is provided for convenience only, and is used by many of the
2215
2208
* demo applications. Do not consider it to be part of the scheduler.
2216
2209
*
2217
2210
* vTaskListTasks() calls uxTaskGetSystemState(), then formats part of the
2218
- * uxTaskGetSystemState() output into a human readable table that displays task:
2219
- * names, states, priority, stack usage and task number.
2211
+ * uxTaskGetSystemState() output into a human readable table that displays task
2212
+ * information in the following format:
2213
+ * Task Name, Task State, Task Priority, Task Stack High Watermak, Task Number.
2214
+ *
2215
+ * The following is a sample output:
2216
+ * Task A X 2 67 2
2217
+ * Task B R 1 67 3
2218
+ * IDLE R 0 67 5
2219
+ * Tmr Svc B 6 137 6
2220
+ *
2220
2221
* Stack usage specified as the number of unused StackType_t words stack can hold
2221
2222
* on top of stack - not the number of bytes.
2222
2223
*
@@ -2267,17 +2268,25 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
2267
2268
* Lists all the current tasks, along with their current state and stack
2268
2269
* usage high water mark.
2269
2270
*
2270
- * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or
2271
- * suspended ('S').
2271
+ * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D')
2272
+ * or suspended ('S').
2272
2273
*
2273
2274
* PLEASE NOTE:
2274
2275
*
2275
2276
* This function is provided for convenience only, and is used by many of the
2276
2277
* demo applications. Do not consider it to be part of the scheduler.
2277
2278
*
2278
2279
* vTaskList() calls uxTaskGetSystemState(), then formats part of the
2279
- * uxTaskGetSystemState() output into a human readable table that displays task:
2280
- * names, states, priority, stack usage and task number.
2280
+ * uxTaskGetSystemState() output into a human readable table that displays task
2281
+ * information in the following format:
2282
+ * Task Name, Task State, Task Priority, Task Stack High Watermak, Task Number.
2283
+ *
2284
+ * The following is a sample output:
2285
+ * Task A X 2 67 2
2286
+ * Task B R 1 67 3
2287
+ * IDLE R 0 67 5
2288
+ * Tmr Svc B 6 137 6
2289
+ *
2281
2290
* Stack usage specified as the number of unused StackType_t words stack can hold
2282
2291
* on top of stack - not the number of bytes.
2283
2292
*
0 commit comments