cleanup: explicitly mark unused parameters (-Wunused-parameter)
[lttng-ust.git] / liblttng-ust / lttng-context-net-ns.c
index 655759ac06ef25c854c5da1217107fd29b95dd40..004d3978e118fb5c4dc1cf8d82340ad352572897 100644 (file)
@@ -90,7 +90,8 @@ void lttng_context_net_ns_reset(void)
 }
 
 static
-size_t net_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
+size_t net_ns_get_size(struct lttng_ust_ctx_field *field __attribute__((unused)),
+               size_t offset)
 {
        size_t size = 0;
 
@@ -100,7 +101,7 @@ size_t net_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 }
 
 static
-void net_ns_record(struct lttng_ust_ctx_field *field,
+void net_ns_record(struct lttng_ust_ctx_field *field __attribute__((unused)),
                 struct lttng_ust_lib_ring_buffer_ctx *ctx,
                 struct lttng_ust_channel_buffer *chan)
 {
@@ -111,7 +112,7 @@ void net_ns_record(struct lttng_ust_ctx_field *field,
 }
 
 static
-void net_ns_get_value(struct lttng_ust_ctx_field *field,
+void net_ns_get_value(struct lttng_ust_ctx_field *field __attribute__((unused)),
                struct lttng_ust_ctx_value *value)
 {
        value->u.s64 = get_net_ns();
This page took 0.023116 seconds and 4 git commands to generate.