Processing of UDP events
[lttv.git] / lttv / lttv / sync / event_matching.h
index f8b4a1099972d8792263f8bc69fd86a3a891a569..e30cda8e15fd0defe8b56010a72570283011daa0 100644 (file)
@@ -21,7 +21,7 @@
 
 #include <glib.h>
 
-#include "data_structures_tcp.h"
+#include "data_structures.h"
 
 
 struct _SyncState;
@@ -29,14 +29,19 @@ struct _SyncState;
 typedef struct
 {
        char* name;
+       bool canMatch[TYPE_COUNT];
 
        void (*initMatching)(struct _SyncState* const syncState);
        void (*destroyMatching)(struct _SyncState* const syncState);
 
-       void (*matchEvent)(struct _SyncState* const syncState, NetEvent* const event,
-               EventType eventType);
+       void (*matchEvent)(struct _SyncState* const syncState, Event* const
+               event);
        GArray* (*finalizeMatching)(struct _SyncState* const syncState);
        void (*printMatchingStats)(struct _SyncState* const syncState);
+       void (*writeMatchingGraphsPlots)(FILE* stream, struct _SyncState* const
+               syncState, const unsigned int i, const unsigned int j);
+       void (*writeMatchingGraphsOptions)(FILE* stream, struct _SyncState* const
+               syncState, const unsigned int i, const unsigned int j);
 } MatchingModule;
 
 #endif
This page took 0.025352 seconds and 4 git commands to generate.