Store graph callbacks in a structure
[lttv.git] / lttv / lttv / sync / data_structures.h
index 697f29a63e29ee5200918f07a8d11d305d4a50eb..014b7da105cc8172f836f42e3d21fac8ea49b437 100644 (file)
@@ -86,6 +86,8 @@ typedef struct
 typedef struct _Event
 {
        unsigned long traceNum;
+       // wallTime is corrected according to factors in trace struct, cpuTime
+       // is not
        uint64_t cpuTime;
        WallTime wallTime;
 
@@ -113,11 +115,13 @@ typedef struct _Message
 typedef struct
 {
        Message* message;
+       // Event* acks[]
        GQueue* acks;
 } Exchange;
 
 typedef struct
 {
+       // Event* events[]
        GQueue* events;
 } Broadcast;
 
This page took 0.023134 seconds and 4 git commands to generate.