cleanup: explicitly mark unused parameters (-Wunused-parameter)
[lttng-ust.git] / liblttng-ust-cyg-profile / lttng-ust-cyg-profile-fast.c
index 2025bd938516f133584203bf1f422bf87d594ed6..bee7ac04d0da2a987cc52bb4b46431fde5a0be8a 100644 (file)
@@ -20,12 +20,12 @@ void __cyg_profile_func_enter(void *this_fn, void *call_site)
 void __cyg_profile_func_exit(void *this_fn, void *call_site)
        __attribute__((no_instrument_function));
 
-void __cyg_profile_func_enter(void *this_fn, void *call_site)
+void __cyg_profile_func_enter(void *this_fn, void *call_site __attribute__((unused)))
 {
        tracepoint(lttng_ust_cyg_profile_fast, func_entry, this_fn);
 }
 
-void __cyg_profile_func_exit(void *this_fn, void *call_site)
+void __cyg_profile_func_exit(void *this_fn, void *call_site __attribute__((unused)))
 {
        tracepoint(lttng_ust_cyg_profile_fast, func_exit, this_fn);
 }
This page took 0.022562 seconds and 4 git commands to generate.