diff --git a/include/task.h b/include/task.h index 0414eb9e2..ccd194dcb 100644 --- a/include/task.h +++ b/include/task.h @@ -2199,9 +2199,16 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION; * Lists all the current tasks, along with their current state and stack * usage high water mark. * - * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or + * Tasks are reported as running ('X'), blocked ('B'), ready ('R'), deleted ('D') or * suspended ('S'). * + * The example of a human readable table generated by vTaskListTasks() + * Task Name State Priority HighWaterMark Task ID + * Task A X 2 67 2 + * Task B R 1 67 3 + * IDLE R 0 67 5 + * Tmr Svc B 6 137 6 + * * PLEASE NOTE: * * This function is provided for convenience only, and is used by many of the