Get rid of clock-raw and use real clock
[babeltrace.git] / include / babeltrace / ctf / types.h
index 3b9039e037c13009aad1cb01d6d68327d35c4408..43afaef78e182277e70c4edbe14c517333765471 100644 (file)
@@ -31,6 +31,8 @@
 #include <stdio.h>
 #include <babeltrace/mmap-align.h>
 
+#define LAST_OFFSET_POISON     ((ssize_t) -1L)
+
 struct bt_stream_callbacks;
 
 struct packet_index {
@@ -50,7 +52,8 @@ struct packet_index {
 struct ctf_stream_pos {
        struct stream_pos parent;
        int fd;                 /* backing file fd. -1 if unset. */
-       GArray *packet_index;   /* contains struct packet_index */
+       GArray *packet_cycles_index;    /* contains struct packet_index in cycles */
+       GArray *packet_real_index;      /* contains struct packet_index in ns */
        int prot;               /* mmap protection */
        int flags;              /* mmap flags */
 
This page took 0.023523 seconds and 4 git commands to generate.