Calculate synchronization accuracy within the chull module
[lttv.git] / lttv / lttv / sync / data_structures.h
index c4b0ff1f23a1016a4d759685517738694b90f776..627286cc77ac4656b23dda6f0012bdd5dc4f6041 100644 (file)
@@ -162,8 +162,8 @@ typedef enum
         * even no communication at all). approx and accuracy are NULL.
         */
 
-       SCREWED,
-       /* The algorithms are screwed. All fields may be NULL.
+       FAIL,
+       /* The algorithms are defective. All fields may be NULL.
         */
 
        APPROX_NB, // This must be the last member
@@ -185,6 +185,14 @@ typedef struct
 } AllFactors;
 
 
+// This structure is used to return a corrected time value with accuracy
+// bounds
+typedef struct
+{
+       uint64_t time, min, max;
+} CorrectedTime;
+
+
 // ConnectionKey-related functions
 guint ghfConnectionKeyHash(gconstpointer key);
 
This page took 0.022278 seconds and 4 git commands to generate.