Python babeltrace fix: handle bt2.Error exception on stream flush
[babeltrace.git] / cli / babeltrace-cfg.h
index ca84ae3fdd721bc01334ab8f3bbbf29e0e63b082..89065244352a1e4a8c1f35f6a6f185840f6f40d4 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <stdlib.h>
 #include <stdint.h>
+#include <stdbool.h>
 #include <babeltrace/values.h>
 #include <babeltrace/ref.h>
 #include <babeltrace/object-internal.h>
@@ -69,6 +70,7 @@ struct bt_config {
        bool omit_home_plugin_path;
        bool command_needs_plugins;
        const char *command_name;
+       char log_level;
        enum bt_config_command command;
        union {
                /* BT_CONFIG_COMMAND_RUN */
@@ -90,6 +92,12 @@ struct bt_config {
                         * to retry to run the graph.
                         */
                        uint64_t retry_duration_us;
+
+                       /*
+                        * Whether or not to trim the source trace to the
+                        * intersection of its streams.
+                        */
+                       bool stream_intersection_mode;
                } run;
 
                /* BT_CONFIG_COMMAND_HELP */
This page took 0.025809 seconds and 4 git commands to generate.