Fix ABI: add padding to tracepoint and ring buffer config public structures
[lttng-ust.git] / include / lttng / tracepoint-types.h
index 37a7662b605f8a9deb5bb3082bd65437c11312e7..77e2e25d1621bce2d4dacf2582a47d0f5e18c7a2 100644 (file)
@@ -19,11 +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.023098 seconds and 4 git commands to generate.