@@ -335,7 +335,7 @@ static void fn_alias_fl(const char *file, int line, const char *alias,
335335}
336336
337337static void fn_child_start_fl (const char * file , int line ,
338- uint64_t us_elapsed_absolute ,
338+ uint64_t us_elapsed_absolute UNUSED ,
339339 const struct child_process * cmd )
340340{
341341 const char * event_name = "child_start" ;
@@ -367,7 +367,8 @@ static void fn_child_start_fl(const char *file, int line,
367367}
368368
369369static void fn_child_exit_fl (const char * file , int line ,
370- uint64_t us_elapsed_absolute , int cid , int pid ,
370+ uint64_t us_elapsed_absolute UNUSED ,
371+ int cid , int pid ,
371372 int code , uint64_t us_elapsed_child )
372373{
373374 const char * event_name = "child_exit" ;
@@ -388,7 +389,8 @@ static void fn_child_exit_fl(const char *file, int line,
388389}
389390
390391static void fn_child_ready_fl (const char * file , int line ,
391- uint64_t us_elapsed_absolute , int cid , int pid ,
392+ uint64_t us_elapsed_absolute UNUSED ,
393+ int cid , int pid ,
392394 const char * ready , uint64_t us_elapsed_child )
393395{
394396 const char * event_name = "child_ready" ;
@@ -409,7 +411,7 @@ static void fn_child_ready_fl(const char *file, int line,
409411}
410412
411413static void fn_thread_start_fl (const char * file , int line ,
412- uint64_t us_elapsed_absolute )
414+ uint64_t us_elapsed_absolute UNUSED )
413415{
414416 const char * event_name = "thread_start" ;
415417 struct json_writer jw = JSON_WRITER_INIT ;
@@ -423,7 +425,7 @@ static void fn_thread_start_fl(const char *file, int line,
423425}
424426
425427static void fn_thread_exit_fl (const char * file , int line ,
426- uint64_t us_elapsed_absolute ,
428+ uint64_t us_elapsed_absolute UNUSED ,
427429 uint64_t us_elapsed_thread )
428430{
429431 const char * event_name = "thread_exit" ;
@@ -439,7 +441,8 @@ static void fn_thread_exit_fl(const char *file, int line,
439441 jw_release (& jw );
440442}
441443
442- static void fn_exec_fl (const char * file , int line , uint64_t us_elapsed_absolute ,
444+ static void fn_exec_fl (const char * file , int line ,
445+ uint64_t us_elapsed_absolute UNUSED ,
443446 int exec_id , const char * exe , const char * * argv )
444447{
445448 const char * event_name = "exec" ;
@@ -460,8 +463,8 @@ static void fn_exec_fl(const char *file, int line, uint64_t us_elapsed_absolute,
460463}
461464
462465static void fn_exec_result_fl (const char * file , int line ,
463- uint64_t us_elapsed_absolute , int exec_id ,
464- int code )
466+ uint64_t us_elapsed_absolute UNUSED ,
467+ int exec_id , int code )
465468{
466469 const char * event_name = "exec_result" ;
467470 struct json_writer jw = JSON_WRITER_INIT ;
@@ -511,7 +514,7 @@ static void fn_repo_fl(const char *file, int line,
511514}
512515
513516static void fn_region_enter_printf_va_fl (const char * file , int line ,
514- uint64_t us_elapsed_absolute ,
517+ uint64_t us_elapsed_absolute UNUSED ,
515518 const char * category ,
516519 const char * label ,
517520 const struct repository * repo ,
@@ -538,7 +541,7 @@ static void fn_region_enter_printf_va_fl(const char *file, int line,
538541}
539542
540543static void fn_region_leave_printf_va_fl (
541- const char * file , int line , uint64_t us_elapsed_absolute ,
544+ const char * file , int line , uint64_t us_elapsed_absolute UNUSED ,
542545 uint64_t us_elapsed_region , const char * category , const char * label ,
543546 const struct repository * repo , const char * fmt , va_list ap )
544547{
0 commit comments