Implement dynamic types, and application context provider support
[lttng-ust.git] / liblttng-ust / lttng-context-vpid.c
index b54ada1dd1a0ef953e9025f05f86239237bae582..7d8091be0351052e3db95602dd839bd7a5d95406 100644 (file)
@@ -62,7 +62,7 @@ void lttng_context_vpid_reset(void)
 #endif
 
 static
-size_t vpid_get_size(size_t offset)
+size_t vpid_get_size(struct lttng_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
@@ -85,12 +85,12 @@ void vpid_record(struct lttng_ctx_field *field,
 
 static
 void vpid_get_value(struct lttng_ctx_field *field,
-               union lttng_ctx_value *value)
+               struct lttng_ctx_value *value)
 {
        pid_t pid;
 
        pid = wrapper_getpid();
-       value->s64 = pid;
+       value->u.s64 = pid;
 }
 
 int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx)
This page took 0.024373 seconds and 5 git commands to generate.