@@ -2199,17 +2199,25 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
21992199 * Lists all the current tasks, along with their current state and stack
22002200 * usage high water mark.
22012201 *
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').
22042204 *
22052205 * PLEASE NOTE:
22062206 *
22072207 * This function is provided for convenience only, and is used by many of the
22082208 * demo applications. Do not consider it to be part of the scheduler.
22092209 *
22102210 * 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+ *
22132221 * Stack usage specified as the number of unused StackType_t words stack can hold
22142222 * on top of stack - not the number of bytes.
22152223 *
@@ -2260,17 +2268,25 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
22602268 * Lists all the current tasks, along with their current state and stack
22612269 * usage high water mark.
22622270 *
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').
22652273 *
22662274 * PLEASE NOTE:
22672275 *
22682276 * This function is provided for convenience only, and is used by many of the
22692277 * demo applications. Do not consider it to be part of the scheduler.
22702278 *
22712279 * 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+ *
22742290 * Stack usage specified as the number of unused StackType_t words stack can hold
22752291 * on top of stack - not the number of bytes.
22762292 *
0 commit comments