Refactoring: context callbacks
[lttng-modules.git] / src / lttng-context-pid.c
index 6f613725aad4815791616637ed3ef2a5e470fe52..e3e962d666092124748a9660eda47f2938967333 100644 (file)
@@ -17,7 +17,7 @@
 #include <lttng/tracer.h>
 
 static
-size_t pid_get_size(size_t offset)
+size_t pid_get_size(void *priv, struct lttng_probe_ctx *probe_ctx, size_t offset)
 {
        size_t size = 0;
 
@@ -27,7 +27,7 @@ size_t pid_get_size(size_t offset)
 }
 
 static
-void pid_record(struct lttng_kernel_ctx_field *field,
+void pid_record(void *priv, struct lttng_probe_ctx *probe_ctx,
                struct lib_ring_buffer_ctx *ctx,
                struct lttng_channel *chan)
 {
@@ -39,11 +39,11 @@ void pid_record(struct lttng_kernel_ctx_field *field,
 }
 
 static
-void pid_get_value(struct lttng_kernel_ctx_field *field,
+void pid_get_value(void *priv,
                struct lttng_probe_ctx *lttng_probe_ctx,
-               union lttng_ctx_value *value)
+               struct lttng_ctx_value *value)
 {
-       value->s64 = task_tgid_nr(current);
+       value->u.s64 = task_tgid_nr(current);
 }
 
 static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
@@ -51,7 +51,6 @@ static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_
                lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
                false, false, false),
        pid_get_size,
-       NULL,
        pid_record,
        pid_get_value,
        NULL, NULL);
This page took 0.024096 seconds and 4 git commands to generate.