Implement bt_ctf_clock_value interface
[babeltrace.git] / formats / ctf / ir / event.c
index 505aa1049e24a473bf19c98ed70702f69aacfe51..beac9d489ca3f895938c977c730018471c81d3b8 100644 (file)
@@ -762,13 +762,16 @@ int bt_ctf_event_populate_event_header(struct bt_ctf_event *event)
                        timestamp_field_type);
                bt_put(timestamp_field_type);
                if (mapped_clock) {
-                       int64_t timestamp;
+                       int64_t timestamp = 0;
 
+                       // FIXME - Clock refactoring
+                       /*
                        ret = bt_ctf_clock_get_time(mapped_clock, &timestamp);
                        bt_put(mapped_clock);
                        if (ret) {
                                goto end;
                        }
+                       */
 
                        ret = set_integer_field_value(timestamp_field,
                                timestamp);
This page took 0.024784 seconds and 4 git commands to generate.