mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Remove warnings about unused parameters in port code
This commit is contained in:
parent
1d589293cb
commit
92ae6cf599
1 changed files with 4 additions and 0 deletions
|
|
@ -19,6 +19,10 @@ StackType_t * pxPortInitialiseStack( StackType_t * pxTopOfStack,
|
||||||
TaskFunction_t pxCode,
|
TaskFunction_t pxCode,
|
||||||
void * pvParameters )
|
void * pvParameters )
|
||||||
{
|
{
|
||||||
|
( void ) pxTopOfStack;
|
||||||
|
( void ) pvParameters;
|
||||||
|
( void ) * pxCode;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue