Perform trace factor reduction as a separate step
[lttv.git] / lttv / lttv / sync / event_processing_lttng_null.c
index 3f4c64c584684e533e9f0159df123adefab3025e..5eff4acb17e19c816230e35a80c8ff30c692992a 100644 (file)
@@ -32,7 +32,7 @@
 static void initProcessingLTTVNull(SyncState* const syncState, ...);
 static void destroyProcessingLTTVNull(SyncState* const syncState);
 
-static void finalizeProcessingLTTVNull(SyncState* const syncState);
+static AllFactors* finalizeProcessingLTTVNull(SyncState* const syncState);
 
 // Functions specific to this module
 static gboolean processEventLTTVNull(void* hookData, void* callData);
@@ -94,10 +94,14 @@ static void initProcessingLTTVNull(SyncState* const syncState, ...)
  *
  * Args:
  *   syncState     container for synchronization data.
+ *
+ * Returns:
+ *   AllFactors    synchronization factors for each trace pair, all of them
+ *                 ABSENT
  */
-static void finalizeProcessingLTTVNull(SyncState* const syncState)
+static AllFactors* finalizeProcessingLTTVNull(SyncState* const syncState)
 {
-       return;
+       return createAllFactors(syncState->traceNb);
 }
 
 
This page took 0.023036 seconds and 4 git commands to generate.