Dynamic scope: child position is MAX_INT
[babeltrace.git] / types / types.c
index 1f93da4e245dba471d27ae5a5b314f905b05079c..fe1538f0102c6a1824bac0485eef3e2cb8125fed 100644 (file)
@@ -19,6 +19,7 @@
  */
 
 #include <babeltrace/format.h>
+#include <limits.h>
 #include <glib.h>
 #include <errno.h>
 
@@ -445,11 +446,17 @@ struct definition_scope *
        return scope;
 }
 
-void set_dynamic_definition_scope(struct definition_scope *scope,
+void set_dynamic_definition_scope(struct definition *definition,
+                                 struct definition_scope *scope,
                                  GQuark root_name)
 {
        g_array_set_size(scope->scope_path, 1);
        g_array_index(scope->scope_path, GQuark, 0) = root_name;
+       /*
+        * Use INT_MAX order to ensure that all fields of the parent
+        * scope are seen as being prior to this scope.
+        */
+       definition->index = INT_MAX;
 }
 
 void free_definition_scope(struct definition_scope *scope)
This page took 0.023039 seconds and 4 git commands to generate.