X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Flttng%2Ftracepoint-types.h;h=f54e30aaa66d3293231c8a306bc54206f5d310d3;hb=3703f1d2e6e5a48c5fe066a7df0d1cc7f76ea4f0;hp=634f97049c6ef7ed2316c4af449525836be73e50;hpb=d2428e875af8666473fb689429eaf1022862510d;p=lttng-ust.git diff --git a/include/lttng/tracepoint-types.h b/include/lttng/tracepoint-types.h index 634f9704..f54e30aa 100644 --- a/include/lttng/tracepoint-types.h +++ b/include/lttng/tracepoint-types.h @@ -23,19 +23,19 @@ * 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 */