cleanup: explicitly mark unused parameters (-Wunused-parameter)
[lttng-ust.git] / liblttng-ust / lttng-context-uts-ns.c
index a410c26455c1e44865a30dc925b96c68a528fed6..5ac0205fc530faaccde4847989757ae2e5cc050a 100644 (file)
@@ -91,7 +91,8 @@ void lttng_context_uts_ns_reset(void)
 }
 
 static
-size_t uts_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
+size_t uts_ns_get_size(struct lttng_ust_ctx_field *field __attribute__((unused)),
+               size_t offset)
 {
        size_t size = 0;
 
@@ -101,19 +102,18 @@ size_t uts_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 }
 
 static
-void uts_ns_record(struct lttng_ust_ctx_field *field,
+void uts_ns_record(struct lttng_ust_ctx_field *field __attribute__((unused)),
                 struct lttng_ust_lib_ring_buffer_ctx *ctx,
                 struct lttng_ust_channel_buffer *chan)
 {
        ino_t uts_ns;
 
        uts_ns = get_uts_ns();
-       lttng_ust_lib_ring_buffer_align_ctx(ctx, lttng_ust_rb_alignof(uts_ns));
-       chan->ops->event_write(ctx, &uts_ns, sizeof(uts_ns));
+       chan->ops->event_write(ctx, &uts_ns, sizeof(uts_ns), lttng_ust_rb_alignof(uts_ns));
 }
 
 static
-void uts_ns_get_value(struct lttng_ust_ctx_field *field,
+void uts_ns_get_value(struct lttng_ust_ctx_field *field __attribute__((unused)),
                struct lttng_ust_ctx_value *value)
 {
        value->u.s64 = get_uts_ns();
This page took 0.023784 seconds and 4 git commands to generate.