Fix: all lttng-ust source files should be tagged _LGPL_SOURCE
[lttng-ust.git] / liblttng-ust / lttng-context.c
index e2032162e514c8e1aac85e6ee88a13c559cc0cb8..33a4cdd1d41477e54fad06fc13c22d1b4e543b2f 100644 (file)
@@ -55,14 +55,6 @@ int lttng_find_context(struct lttng_ctx *ctx, const char *name)
        return 0;
 }
 
-int lttng_context_is_app(const char *name)
-{
-       if (strncmp(name, "$app.", strlen("$app.")) != 0) {
-               return 0;
-       }
-       return 1;
-}
-
 int lttng_get_context_index(struct lttng_ctx *ctx, const char *name)
 {
        unsigned int i;
@@ -387,3 +379,14 @@ error:
        lttng_destroy_context(*ctx);
        return ret;
 }
+
+/* For backward compatibility. Leave those exported symbols in place. */
+struct lttng_ctx *lttng_static_ctx;
+
+void lttng_context_init(void)
+{
+}
+
+void lttng_context_exit(void)
+{
+}
This page took 0.023506 seconds and 4 git commands to generate.