Add convex hull algorithm-based synchronization
[lttv.git] / lttv / lttv / sync / event_processing_lttv_null.c
index 2229bc108f6ef804589c9ea75d8c55be25432bad..678e3c346a9e3f9daf2852df229d73345d042baa 100644 (file)
@@ -33,7 +33,7 @@
 #endif
 
 
-// Functions common to all matching modules
+// Functions common to all processing modules
 static void initProcessingLTTVNull(SyncState* const syncState,
        LttvTracesetContext* const traceSetContext);
 static void destroyProcessingLTTVNull(SyncState* const syncState);
@@ -51,6 +51,8 @@ static ProcessingModule processingModuleLTTVNull = {
        .destroyProcessing= &destroyProcessingLTTVNull,
        .finalizeProcessing= &finalizeProcessingLTTVNull,
        .printProcessingStats= NULL,
+       .writeProcessingGraphsPlots= NULL,
+       .writeProcessingGraphsOptions= NULL,
 };
 
 
@@ -89,7 +91,7 @@ static void initProcessingLTTVNull(SyncState* const syncState,
                sizeof(GArray*), syncState->traceNb);
 
        registerHooks(processingData->hookListList, traceSetContext,
-               syncState->traceNb, &processEventLTTVNull, syncState);
+               &processEventLTTVNull, syncState);
 }
 
 
@@ -125,7 +127,7 @@ static void destroyProcessingLTTVNull(SyncState* const syncState)
        }
 
        unregisterHooks(processingData->hookListList,
-               processingData->traceSetContext, syncState->traceNb);
+               processingData->traceSetContext);
 
        free(syncState->processingData);
        syncState->processingData= NULL;
This page took 0.02397 seconds and 4 git commands to generate.