X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-context-vtid.c;h=d1c73d8d6cf3ee0666522824e46f4a6265244e2e;hb=2c3f4c28698f497756f194ef88cd991e2cca6bb4;hp=f9abadbb8f58eb1f05ee5bc22a3a49a509776b88;hpb=b2cc986adb1aa11116ace6129dc2ec7e5c9737b1;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-vtid.c b/liblttng-ust/lttng-context-vtid.c index f9abadbb..d1c73d8d 100644 --- a/liblttng-ust/lttng-context-vtid.c +++ b/liblttng-ust/lttng-context-vtid.c @@ -46,7 +46,7 @@ void lttng_context_vtid_reset(void) } static -size_t vtid_get_size(size_t offset) +size_t vtid_get_size(struct lttng_ctx_field *field, size_t offset) { size_t size = 0; @@ -69,11 +69,11 @@ void vtid_record(struct lttng_ctx_field *field, static void vtid_get_value(struct lttng_ctx_field *field, - union lttng_ctx_value *value) + struct lttng_ctx_value *value) { if (caa_unlikely(!URCU_TLS(cached_vtid))) URCU_TLS(cached_vtid) = gettid(); - value->s64 = URCU_TLS(cached_vtid); + value->u.s64 = URCU_TLS(cached_vtid); } int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx)