mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-23 17:38:23 +08:00
Correct build of helper function for ports where the stack grows up.
This commit is contained in:
@ -2549,7 +2549,7 @@ tskTCB *pxNewTCB;
|
|||||||
|
|
||||||
#if ( portSTACK_GROWTH > 0 )
|
#if ( portSTACK_GROWTH > 0 )
|
||||||
{
|
{
|
||||||
ppxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
|
pxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user