Revert "Introduce LTTNG_UST_LOADED environment variable"
[lttng-ust.git] / liblttng-ust / lttng-context-vpid.c
index 949529c606c253d6fdf272360658370ad818b2d7..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)
@@ -115,5 +115,6 @@ int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx)
        field->get_size = vpid_get_size;
        field->record = vpid_record;
        field->get_value = vpid_get_value;
+       lttng_context_update(*ctx);
        return 0;
 }
This page took 0.027369 seconds and 4 git commands to generate.