From 1df822a922dce3fd42399692a50c626609cbf2dd Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 20 Mar 2024 16:23:08 +0100 Subject: Mark parameters as intentionally unused The parameters are unused due to API constraints. The functions are used through function pointers. Alternative implementations may use the parameters. Update #4862. --- cpukit/score/src/threadq.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpukit/score/src/threadq.c') diff --git a/cpukit/score/src/threadq.c b/cpukit/score/src/threadq.c index e694029a46..3c6d72bd14 100644 --- a/cpukit/score/src/threadq.c +++ b/cpukit/score/src/threadq.c @@ -179,5 +179,7 @@ void _Thread_queue_MP_callout_do_nothing( ) { /* Do nothing */ + (void) the_proxy; + (void) mp_id; } #endif -- cgit v1.2.3