X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-tid.c;fp=src%2Flttng-context-tid.c;h=5a9dee54fd8f8c8c74b89541192c0567b621bf9f;hb=2dc781e02eb156a76554ada092a181ab2916db57;hp=89228a1f8194a4d784c6b2dab94290f58c5ab947;hpb=c2fb9c1c4f890840c02ad4b66a7cf69ae5dca6f7;p=lttng-modules.git diff --git a/src/lttng-context-tid.c b/src/lttng-context-tid.c index 89228a1f..5a9dee54 100644 --- a/src/lttng-context-tid.c +++ b/src/lttng-context-tid.c @@ -17,7 +17,7 @@ #include static -size_t tid_get_size(size_t offset) +size_t tid_get_size(void *priv, struct lttng_probe_ctx *probe_ctx, size_t offset) { size_t size = 0; @@ -27,7 +27,7 @@ size_t tid_get_size(size_t offset) } static -void tid_record(struct lttng_kernel_ctx_field *field, +void tid_record(void *priv, struct lttng_probe_ctx *probe_ctx, struct lib_ring_buffer_ctx *ctx, struct lttng_channel *chan) { @@ -39,14 +39,14 @@ void tid_record(struct lttng_kernel_ctx_field *field, } static -void tid_get_value(struct lttng_kernel_ctx_field *field, +void tid_get_value(void *priv, struct lttng_probe_ctx *lttng_probe_ctx, - union lttng_ctx_value *value) + struct lttng_ctx_value *value) { pid_t tid; tid = task_pid_nr(current); - value->s64 = tid; + value->u.s64 = tid; } static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( @@ -54,7 +54,6 @@ static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_ lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10), false, false, false), tid_get_size, - NULL, tid_record, tid_get_value, NULL, NULL);