Don't rely on explicit context for filtering
[lttng-ust.git] / liblttng-ust / lttng-context.c
index fc2ab4f570b8182ef69f44a8e3375e5adcde1630..ecee23445787bce42397e96c200537b1385017ef 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <lttng/ust-events.h>
 #include <lttng/ust-tracer.h>
+#include <usterr-signal-safe.h>
 #include <helper.h>
 #include <string.h>
 #include <assert.h>
  * same context performed by the same thread return the same result.
  */
 
+/*
+ * Static array of contexts, for $ctx filters.
+ */
+struct lttng_ctx *lttng_static_ctx;
+
 int lttng_find_context(struct lttng_ctx *ctx, const char *name)
 {
        unsigned int i;
@@ -120,3 +126,31 @@ void lttng_destroy_context(struct lttng_ctx *ctx)
        free(ctx->fields);
        free(ctx);
 }
+
+void lttng_context_init(void)
+{
+       int ret;
+
+       ret = lttng_add_pthread_id_to_ctx(&lttng_static_ctx);
+       if (ret) {
+               WARN("Cannot add context lttng_add_pthread_id_to_ctx");
+       }
+       ret = lttng_add_vtid_to_ctx(&lttng_static_ctx);
+       if (ret) {
+               WARN("Cannot add context lttng_add_vtid_to_ctx");
+       }
+       ret = lttng_add_vpid_to_ctx(&lttng_static_ctx);
+       if (ret) {
+               WARN("Cannot add context lttng_add_vpid_to_ctx");
+       }
+       ret = lttng_add_procname_to_ctx(&lttng_static_ctx);
+       if (ret) {
+               WARN("Cannot add context lttng_add_procname_to_ctx");
+       }
+}
+
+void lttng_context_exit(void)
+{
+       lttng_destroy_context(lttng_static_ctx);
+       lttng_static_ctx = NULL;
+}
This page took 0.022893 seconds and 4 git commands to generate.