Add convex hull algorithm-based synchronization
[lttv.git] / lttv / lttv / sync / event_processing.h
index bbaae74cee28595471403111af6d394d4ce10578..6e8c3799cd245f6e62f815819be1d07f08c824dd 100644 (file)
@@ -20,6 +20,7 @@
 #define EVENT_PROCESSING_H
 
 #include <glib.h>
+#include <stdio.h>
 
 #include <lttv/tracecontext.h>
 
@@ -37,7 +38,17 @@ typedef struct
        void (*destroyProcessing)(struct _SyncState* const syncState);
 
        void (*finalizeProcessing)(struct _SyncState* const syncState);
+
        void (*printProcessingStats)(struct _SyncState* const syncState);
+
+       /* The processing module must provide the next function if it wishes
+        * graphs to be created at all. If it provides the next function, it must
+        * also provide the second next function.
+        */
+       void (*writeProcessingGraphsPlots)(FILE* stream, struct _SyncState* const
+               syncState, const unsigned int i, const unsigned int j);
+       void (*writeProcessingGraphsOptions)(FILE* stream, struct _SyncState*
+               const syncState, const unsigned int i, const unsigned int j);
 } ProcessingModule;
 
 #endif
This page took 0.022033 seconds and 4 git commands to generate.