Add perf context support for ARMv7
[lttng-ust.git] / liblttng-ust / ust-core.c
index 0182d95722040a24d4a57969ff95071eaf51513a..6574f93b194150540456bdb9dfd86d5479381acc 100644 (file)
@@ -106,3 +106,11 @@ void lttng_ust_dummy_get_value(struct lttng_ctx_field *field,
 {
        value->sel = LTTNG_UST_DYNAMIC_TYPE_NONE;
 }
+
+int lttng_context_is_app(const char *name)
+{
+       if (strncmp(name, "$app.", strlen("$app.")) != 0) {
+               return 0;
+       }
+       return 1;
+}
This page took 0.023513 seconds and 4 git commands to generate.