Fix: event-notifier: not propagating error counter indexes
[lttng-ust.git] / liblttng-ust / lttng-context.c
index fc564b6aa5745bd1fbacb75118fd5619b3077ecf..fde3607dc512172ff1f7406d36fbfd4aef2cf1ed 100644 (file)
 #include <lttng/ust-events.h>
 #include <lttng/ust-tracer.h>
 #include <lttng/ust-context-provider.h>
-#include <urcu-pointer.h>
+#include <lttng/urcu/pointer.h>
 #include <usterr-signal-safe.h>
 #include <helper.h>
 #include <stddef.h>
 #include <string.h>
 #include <assert.h>
+#include "tracepoint-internal.h"
+
+#include "context-internal.h"
 
 /*
  * The filter implementation requires that two consecutive "get" for the
@@ -155,8 +158,8 @@ int lttng_context_add_rcu(struct lttng_ctx **ctx_p,
        }
        *nf = *f;
        lttng_context_update(new_ctx);
-       rcu_assign_pointer(*ctx_p, new_ctx);
-       synchronize_trace();
+       lttng_ust_rcu_assign_pointer(*ctx_p, new_ctx);
+       lttng_ust_synchronize_trace();
        if (old_ctx) {
                free(old_ctx->fields);
                free(old_ctx);
@@ -389,8 +392,8 @@ int lttng_ust_context_set_provider_rcu(struct lttng_ctx **_ctx,
                new_fields[i].get_value = get_value;
        }
        new_ctx->fields = new_fields;
-       rcu_assign_pointer(*_ctx, new_ctx);
-       synchronize_trace();
+       lttng_ust_rcu_assign_pointer(*_ctx, new_ctx);
+       lttng_ust_synchronize_trace();
        free(ctx->fields);
        free(ctx);
        return 0;
@@ -400,7 +403,7 @@ field_error:
        return ret;
 }
 
-int lttng_session_context_init(struct lttng_ctx **ctx)
+int lttng_context_init_all(struct lttng_ctx **ctx)
 {
        int ret;
 
@@ -517,3 +520,8 @@ void lttng_context_init(void)
 void lttng_context_exit(void)
 {
 }
+
+int lttng_session_context_init(struct lttng_ctx **ctx)
+{
+       return 0;
+}
This page took 0.023494 seconds and 4 git commands to generate.