cpukit/libtest/testparallel.c: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-paramter.
This commit is contained in:
Joel Sherrill
2025-09-25 19:13:05 -05:00
committed by Gedare Bloom
parent ba04473bd7
commit ae1dd64548

View File

@@ -36,6 +36,8 @@
static void stop_worker_timer(rtems_id timer_id, void *arg)
{
(void) timer_id;
rtems_test_parallel_context *ctx = arg;
_Atomic_Store_ulong(&ctx->stop, 1, ATOMIC_ORDER_RELAXED);