Fix ABI: add padding to tracepoint and ring buffer config public structures
[lttng-ust.git] / include / lttng / tracepoint-types.h
index b6353c80a3827130e0e74c48db099e7461e88673..77e2e25d1621bce2d4dacf2582a47d0f5e18c7a2 100644 (file)
@@ -19,10 +19,13 @@ struct tracepoint_probe {
        void *data;
 };
 
+#define TRACEPOINT_PADDING     16
 struct tracepoint {
        const char *name;
        int state;
        struct tracepoint_probe *probes;
+       int *tracepoint_provider_ref;
+       char padding[TRACEPOINT_PADDING];
 };
 
 #endif /* _LTTNG_TRACEPOINT_TYPES_H */
This page took 0.024644 seconds and 4 git commands to generate.