@@ -2199,17 +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 blocked ('B'), ready ('R'), deleted ('D') or
2203
- * suspended ('S').
2202
+ * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D')
2203
+ * or suspended ('S').
2204
2204
*
2205
2205
* PLEASE NOTE:
2206
2206
*
2207
2207
* This function is provided for convenience only, and is used by many of the
2208
2208
* demo applications. Do not consider it to be part of the scheduler.
2209
2209
*
2210
2210
* vTaskListTasks() calls uxTaskGetSystemState(), then formats part of the
2211
- * uxTaskGetSystemState() output into a human readable table that displays task:
2212
- * 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
+ *
2213
2221
* Stack usage specified as the number of unused StackType_t words stack can hold
2214
2222
* on top of stack - not the number of bytes.
2215
2223
*
@@ -2260,17 +2268,25 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
2260
2268
* Lists all the current tasks, along with their current state and stack
2261
2269
* usage high water mark.
2262
2270
*
2263
- * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or
2264
- * suspended ('S').
2271
+ * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D')
2272
+ * or suspended ('S').
2265
2273
*
2266
2274
* PLEASE NOTE:
2267
2275
*
2268
2276
* This function is provided for convenience only, and is used by many of the
2269
2277
* demo applications. Do not consider it to be part of the scheduler.
2270
2278
*
2271
2279
* vTaskList() calls uxTaskGetSystemState(), then formats part of the
2272
- * uxTaskGetSystemState() output into a human readable table that displays task:
2273
- * 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
+ *
2274
2290
* Stack usage specified as the number of unused StackType_t words stack can hold
2275
2291
* on top of stack - not the number of bytes.
2276
2292
*
0 commit comments