cleanup: explicitly mark unused parameters (-Wunused-parameter)
[lttng-ust.git] / liblttng-ust / lttng-context-time-ns.c
index b9d07d0861adc0f4aa98257c0fe83d2eb75fac84..a8a30df8fea2349e2d46d3263d16adf267643370 100644 (file)
@@ -89,7 +89,8 @@ void lttng_context_time_ns_reset(void)
 }
 
 static
-size_t time_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
+size_t time_ns_get_size(struct lttng_ust_ctx_field *field __attribute__((unused)),
+               size_t offset)
 {
        size_t size = 0;
 
@@ -99,7 +100,7 @@ size_t time_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 }
 
 static
-void time_ns_record(struct lttng_ust_ctx_field *field,
+void time_ns_record(struct lttng_ust_ctx_field *field __attribute__((unused)),
                 struct lttng_ust_lib_ring_buffer_ctx *ctx,
                 struct lttng_ust_channel_buffer *chan)
 {
@@ -110,7 +111,7 @@ void time_ns_record(struct lttng_ust_ctx_field *field,
 }
 
 static
-void time_ns_get_value(struct lttng_ust_ctx_field *field,
+void time_ns_get_value(struct lttng_ust_ctx_field *field __attribute__((unused)),
                struct lttng_ust_ctx_value *value)
 {
        value->u.s64 = get_time_ns();
This page took 0.022697 seconds and 4 git commands to generate.