File tree 2 files changed +7
-3
lines changed 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1795,8 +1795,10 @@ UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray,
1795
1795
* demo applications. Do not consider it to be part of the scheduler.
1796
1796
*
1797
1797
* vTaskList() calls uxTaskGetSystemState(), then formats part of the
1798
- * uxTaskGetSystemState() output into a human readable table that displays task
1799
- * names, states and stack usage.
1798
+ * uxTaskGetSystemState() output into a human readable table that displays task:
1799
+ * names, states, priority, stack usage and task number.
1800
+ * Stack usage specified as the number of unused StackType_t words stack can hold
1801
+ * on top of stack - not the number of bytes.
1800
1802
*
1801
1803
* vTaskList() has a dependency on the sprintf() C library function that might
1802
1804
* bloat the code size, use a lot of stack, and provide different results on
Original file line number Diff line number Diff line change @@ -4434,7 +4434,9 @@ static void prvResetNextTaskUnblockTime( void )
4434
4434
*
4435
4435
* vTaskList() calls uxTaskGetSystemState(), then formats part of the
4436
4436
* uxTaskGetSystemState() output into a human readable table that
4437
- * displays task names, states and stack usage.
4437
+ * displays task: names, states, priority, stack usage and task number.
4438
+ * Stack usage specified as the number of unused StackType_t words stack can hold
4439
+ * on top of stack - not the number of bytes.
4438
4440
*
4439
4441
* vTaskList() has a dependency on the sprintf() C library function that
4440
4442
* might bloat the code size, use a lot of stack, and provide different
You can’t perform that action at this time.
0 commit comments