Add a "set" attribute to component begin/end config
[babeltrace.git] / converter / babeltrace-cfg.h
index 46777547ca514aaba27affc7e0986249d2354aed..50fd360a0cc40102619cebec3f814e9c0570fec0 100644 (file)
@@ -38,8 +38,14 @@ struct bt_config_component {
        GString *plugin_name;
        GString *component_name;
        struct bt_value *params;
-       uint64_t begin_ns;
-       uint64_t end_ns;
+       struct {
+               bool set;
+               int64_t value_ns;
+       } begin;
+       struct {
+               bool set;
+               int64_t value_ns;
+       } end;
 };
 
 struct bt_config {
This page took 0.02318 seconds and 4 git commands to generate.