cpukit: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
This commit is contained in:
Joel Sherrill
2025-10-10 16:24:04 -05:00
committed by Gedare Bloom
parent a9a8c963e4
commit 34f9c5690d
26 changed files with 163 additions and 13 deletions

View File

@@ -165,6 +165,8 @@ rtems_debugger_thread_find_index(rtems_id id)
static bool
snapshot_thread(rtems_tcb* tcb, void* arg)
{
(void) arg;
rtems_debugger_threads* threads = rtems_debugger->threads;
rtems_id id = tcb->Object.id;
char name[RTEMS_DEBUGGER_THREAD_NAME_SIZE];