X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-tid.c;h=5ca7346c9d0a21729954d37b66496310f5cdedd5;hb=3214222f0757e108dd1a7edaa60b376b61a87a91;hp=0b763fce1cc5f5807137a35d0eeb6d1c3c5d7431;hpb=346cb5ee265fe5f92d4d67a078eab74aa19e7bbd;p=lttng-modules.git diff --git a/src/lttng-context-tid.c b/src/lttng-context-tid.c index 0b763fce..5ca7346c 100644 --- a/src/lttng-context-tid.c +++ b/src/lttng-context-tid.c @@ -28,14 +28,13 @@ 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 lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_kernel_ring_buffer_ctx *ctx, + 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