X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Flttng-context-tid.c;h=088576726af23cde6a73d2598a68bbf7a7cb1eba;hb=a66ce3814ae0a929f0f4516a2813bbc062ba18f8;hp=9438cb63e6d5574a7ae9d970b9a8bafcea585bf9;hpb=8a57ec025ffbe56153748fd69b60118862707182;p=lttng-modules.git diff --git a/src/lttng-context-tid.c b/src/lttng-context-tid.c index 9438cb63..08857672 100644 --- a/src/lttng-context-tid.c +++ b/src/lttng-context-tid.c @@ -29,13 +29,12 @@ size_t tid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t static void tid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, struct lttng_kernel_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_kernel_channel_buffer *chan) { 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,