mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Correct build of helper function for ports where the stack grows up.
This commit is contained in:
parent
8320dfb885
commit
a2cfaa7cd9
|
@ -2549,7 +2549,7 @@ tskTCB *pxNewTCB;
|
|||
|
||||
#if ( portSTACK_GROWTH > 0 )
|
||||
{
|
||||
ppxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
|
||||
pxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
|
||||
}
|
||||
#else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue