X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Flttv%2Fsync%2Fevent_processing.h;h=6e8c3799cd245f6e62f815819be1d07f08c824dd;hb=08365995afd45ea5f6f62f5d8fbc90961de5eacf;hp=bbaae74cee28595471403111af6d394d4ce10578;hpb=85c9417b6ebc1e1cd25d479389c91926eb6948dc;p=lttv.git diff --git a/lttv/lttv/sync/event_processing.h b/lttv/lttv/sync/event_processing.h index bbaae74c..6e8c3799 100644 --- a/lttv/lttv/sync/event_processing.h +++ b/lttv/lttv/sync/event_processing.h @@ -20,6 +20,7 @@ #define EVENT_PROCESSING_H #include +#include #include @@ -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