X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=lttng-context-tid.c;h=12862659f18080d42496636185125d302cafa38c;hb=5283350bf46f4cec3de30e4fc9b215d88d020d98;hp=5ddc43c5cfdbcb94587ded42da4594a1c38af4b9;hpb=a9dd15dadd7d58f58cfd19d2503d3b6b541723bc;p=lttng-modules.git diff --git a/lttng-context-tid.c b/lttng-context-tid.c index 5ddc43c5..12862659 100644 --- a/lttng-context-tid.c +++ b/lttng-context-tid.c @@ -50,6 +50,17 @@ void tid_record(struct lttng_ctx_field *field, chan->ops->event_write(ctx, &tid, sizeof(tid)); } +static +void tid_get_value(struct lttng_ctx_field *field, + struct lttng_probe_ctx *lttng_probe_ctx, + union lttng_ctx_value *value) +{ + pid_t tid; + + tid = task_pid_nr(current); + value->s64 = tid; +} + int lttng_add_tid_to_ctx(struct lttng_ctx **ctx) { struct lttng_ctx_field *field; @@ -71,6 +82,7 @@ int lttng_add_tid_to_ctx(struct lttng_ctx **ctx) field->event_field.type.u.basic.integer.encoding = lttng_encode_none; field->get_size = tid_get_size; field->record = tid_record; + field->get_value = tid_get_value; lttng_context_update(*ctx); wrapper_vmalloc_sync_all(); return 0;