Implement dynamic types, and application context provider support
[deliverable/lttng-ust.git] / liblttng-ust / lttng-context-procname.c
index 4d41593e17cb503286e1355cbc3f03c0166b4c81..13461a6878fded8e47bf10c902b054940d4c4c16 100644 (file)
@@ -55,7 +55,7 @@ void lttng_context_procname_reset(void)
 }
 
 static
-size_t procname_get_size(size_t offset)
+size_t procname_get_size(struct lttng_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
@@ -76,12 +76,12 @@ void procname_record(struct lttng_ctx_field *field,
 
 static
 void procname_get_value(struct lttng_ctx_field *field,
-               union lttng_ctx_value *value)
+               struct lttng_ctx_value *value)
 {
        char *procname;
 
        procname = wrapper_getprocname();
-       value->str = procname;
+       value->u.str = procname;
 }
 
 int lttng_add_procname_to_ctx(struct lttng_ctx **ctx)
This page took 0.040738 seconds and 5 git commands to generate.