Rename public structure to avoid collisions
[lttng-ust.git] / include / lttng / tracepoint-types.h
index 634f97049c6ef7ed2316c4af449525836be73e50..f54e30aaa66d3293231c8a306bc54206f5d310d3 100644 (file)
  * SOFTWARE.
  */
 
-struct tracepoint_probe {
+struct lttng_ust_tracepoint_probe {
        void (*func)(void);
        void *data;
 };
 
-#define TRACEPOINT_PADDING     16
-struct tracepoint {
+#define LTTNG_UST_TRACEPOINT_PADDING   16
+struct lttng_ust_tracepoint {
        const char *name;
        int state;
-       struct tracepoint_probe *probes;
+       struct lttng_ust_tracepoint_probe *probes;
        int *tracepoint_provider_ref;
        const char *signature;
-       char padding[TRACEPOINT_PADDING];
+       char padding[LTTNG_UST_TRACEPOINT_PADDING];
 };
 
 #endif /* _LTTNG_TRACEPOINT_TYPES_H */
This page took 0.025196 seconds and 4 git commands to generate.