X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=lttng-context-procname.c;h=5c1cd3a6b04f7bf23f16239cb2131dffa2f8c755;hb=f127e61ee231d002fb9a7803643a157e06f6d2e2;hp=5913ee6ac997fefb5a8f65c69cd45aa41a7cc68c;hpb=07dfc1d0e4b093ad02682499a702dc11e54e8302;p=lttng-modules.git diff --git a/lttng-context-procname.c b/lttng-context-procname.c index 5913ee6a..5c1cd3a6 100644 --- a/lttng-context-procname.c +++ b/lttng-context-procname.c @@ -51,6 +51,13 @@ void procname_record(struct lttng_ctx_field *field, chan->ops->event_write(ctx, current->comm, sizeof(current->comm)); } +static +void procname_get_value(struct lttng_ctx_field *field, + union lttng_ctx_value *value) +{ + value->str = current->comm; +} + int lttng_add_procname_to_ctx(struct lttng_ctx **ctx) { struct lttng_ctx_field *field; @@ -75,6 +82,7 @@ int lttng_add_procname_to_ctx(struct lttng_ctx **ctx) field->get_size = procname_get_size; field->record = procname_record; + field->get_value = procname_get_value; lttng_context_update(*ctx); wrapper_vmalloc_sync_all(); return 0;