Fix ABI: add padding to tracepoint and ring buffer config public structures
[lttng-ust.git] / include / lttng / tracepoint-types.h
index fad23bc488924ed2929730b118c0c17f2a57e67d..77e2e25d1621bce2d4dacf2582a47d0f5e18c7a2 100644 (file)
  */
 
 struct tracepoint_probe {
-       void *callback;
-       void *priv;
+       void *func;
+       void *data;
 };
 
+#define TRACEPOINT_PADDING     16
 struct tracepoint {
        const char *name;
        int state;
        struct tracepoint_probe *probes;
-};
-
-struct tracepoint_lib {
-       struct cds_list_head list;
-       struct tracepoint tracepoints_start;
-       int tracepoints_count;
+       int *tracepoint_provider_ref;
+       char padding[TRACEPOINT_PADDING];
 };
 
 #endif /* _LTTNG_TRACEPOINT_TYPES_H */
This page took 0.033931 seconds and 4 git commands to generate.