Get rid of clock-raw and use real clock
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index a24dafabd41dbbcc497b43e84080c9df9b9e8b4d..85b0f2d5ef8637ff8a25d5efe50dcaa5b8f7719d 100644 (file)
@@ -35,11 +35,11 @@ struct ctf_clock;
 
 struct ctf_stream_definition {
        struct ctf_stream_declaration *stream_class;
-       uint64_t timestamp;                     /* Current timestamp, in ns */
+       uint64_t real_timestamp;                /* Current timestamp, in ns */
+       uint64_t cycles_timestamp;              /* Current timestamp, in cycles */
        uint64_t event_id;                      /* Current event ID */
        int has_timestamp;
        uint64_t stream_id;
-       int consumed;                           /* Last packet used by caller */
 
        struct definition_struct *trace_packet_header;
        struct definition_struct *stream_packet_context;
@@ -53,8 +53,10 @@ struct ctf_stream_definition {
 
        /* Event discarded information */
        uint64_t events_discarded;
-       uint64_t prev_timestamp;        /* Start-of-last-packet timestamp */
-       uint64_t prev_timestamp_end;    /* End-of-last-packet timestamp */
+       uint64_t prev_real_timestamp;           /* Start-of-last-packet timestamp in ns */
+       uint64_t prev_real_timestamp_end;       /* End-of-last-packet timestamp in ns */
+       uint64_t prev_cycles_timestamp;         /* Start-of-last-packet timestamp in cycles */
+       uint64_t prev_cycles_timestamp_end;     /* End-of-last-packet timestamp in cycles */
 };
 
 struct ctf_event_definition {
This page took 0.0226 seconds and 4 git commands to generate.