We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d486264 + 692c4b0 commit 85d2fa2Copy full SHA for 85d2fa2
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