X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Ftracepoint-types.h;h=37a7662b605f8a9deb5bb3082bd65437c11312e7;hb=628e1d81fe575cfd281d8e0758b672b23d890c09;hp=fad23bc488924ed2929730b118c0c17f2a57e67d;hpb=b728d87e617189fe9898a9492a559ecf949d2348;p=lttng-ust.git diff --git a/include/lttng/tracepoint-types.h b/include/lttng/tracepoint-types.h index fad23bc4..37a7662b 100644 --- a/include/lttng/tracepoint-types.h +++ b/include/lttng/tracepoint-types.h @@ -15,20 +15,15 @@ */ struct tracepoint_probe { - void *callback; - void *priv; + void *func; + void *data; }; 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; }; #endif /* _LTTNG_TRACEPOINT_TYPES_H */