Set the correction factors in the sync_chain
[lttv.git] / lttv / lttv / sync / event_processing_lttng_null.c
index 3f4c64c584684e533e9f0159df123adefab3025e..b9eecbf3c1547a998e3c8542f40412b3d646b5af 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 GArray* 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:
+ *   Factors[traceNb] synchronization factors for each trace, empty in this
+ *   case
  */
-static void finalizeProcessingLTTVNull(SyncState* const syncState)
+static GArray* finalizeProcessingLTTVNull(SyncState* const syncState)
 {
-       return;
+       return g_array_new(FALSE, FALSE, sizeof(Factors));
 }
 
 
This page took 0.023962 seconds and 4 git commands to generate.