Rename "tsc" to "timestamp"
[lttng-modules.git] / src / lttng-context-tid.c
index 538a2a58f6a8f3bffdef9de6861d8ab259e033d5..088576726af23cde6a73d2598a68bbf7a7cb1eba 100644 (file)
@@ -34,8 +34,7 @@ void tid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
        pid_t tid;
 
        tid = task_pid_nr(current);
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(tid));
-       chan->ops->event_write(ctx, &tid, sizeof(tid));
+       chan->ops->event_write(ctx, &tid, sizeof(tid), lttng_alignof(tid));
 }
 
 static
@@ -52,7 +51,7 @@ void tid_get_value(void *priv,
 static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
        lttng_kernel_static_event_field("tid",
                lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
-               false, false, false),
+               false, false),
        tid_get_size,
        tid_record,
        tid_get_value,
This page took 0.022889 seconds and 4 git commands to generate.