There was an error while loading. Please reload this page.
1 parent 34e7bc1 commit 1612072Copy full SHA for 1612072
portable/ThirdParty/GCC/Posix/port.c
@@ -229,6 +229,7 @@ StackType_t * pxPortInitialiseStack( StackType_t * pxTopOfStack,
229
/* Ensure that there is enough space to store Thread_t on the stack. */
230
ulStackSize = ( size_t ) ( pxTopOfStack + 1 - pxEndOfStack ) * sizeof( *pxTopOfStack );
231
configASSERT( ulStackSize > sizeof( Thread_t ) );
232
+ ( void ) ulStackSize; /* suppress set but not used warning */
233
234
thread->pxCode = pxCode;
235
thread->pvParams = pvParameters;
0 commit comments