Check for context name duplicata
[lttng-modules.git] / ltt-context.c
index 634694b968d4c06f6cf5066b684c80efc10d68d9..6c3890c3e4a7ba46d2c6f320610a069edbf7dbcd 100644 (file)
 #include "ltt-events.h"
 #include "ltt-tracer.h"
 
+int lttng_find_context(struct lttng_ctx *ctx, const char *name)
+{
+       unsigned int i;
+
+       for (i = 0; i < ctx->nr_fields; i++) {
+               if (!strcmp(ctx->fields[i].event_field.name, name))
+                       return 1;
+       }
+       return 0;
+}
+EXPORT_SYMBOL_GPL(lttng_find_context);
+
 struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx_p)
 {
        struct lttng_ctx_field *field;
This page took 0.024138 seconds and 4 git commands to generate.