Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Josi <tonyjosi@amazon.com>2024-01-13 19:13:05 +0300
committerGitHub <noreply@github.com>2024-01-13 19:13:05 +0300
commitc053ffeacc655a8d2610c63f388f2fc1210b096d (patch)
treee758b459ccb247b532af0ef84e507e976657e725
parent3baa3dd98bb98ab58337f137747559b4f2cd24db (diff)
Fix -Werror=unused-parameter in GCC posix prvTimerTickHandler() (#949)
-rw-r--r--portable/ThirdParty/GCC/Posix/port.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/portable/ThirdParty/GCC/Posix/port.c b/portable/ThirdParty/GCC/Posix/port.c
index d5296183a..d0152169a 100644
--- a/portable/ThirdParty/GCC/Posix/port.c
+++ b/portable/ThirdParty/GCC/Posix/port.c
@@ -381,6 +381,8 @@ static uint64_t prvGetTimeNs( void )
static void * prvTimerTickHandler( void * arg )
{
+ ( void ) arg;
+
while( xTimerTickThreadShouldRun )
{
/*