Fix lib ring buffer compile errors
[lttng-ust.git] / liblttng-ust / lttng-ust-abi.c
index 435c86a673c8cb2652d6b992974b7846ae119108..76f78702db080b1dcb04a5a2dad8927cf2fe60fb 100644 (file)
 #include <lttng/usterr-signal-safe.h>
 #include "lttng/core.h"
 #include "ltt-tracer.h"
+#include "tracepoint-internal.h"
+
+struct ltt_tracepoint_list {
+       struct tracepoint_iter iter;
+       int got_first;
+};
 
 static int lttng_ust_abi_close_in_progress;
 
@@ -243,9 +249,9 @@ static
 long lttng_abi_tracer_version(int objd,
        struct lttng_ust_tracer_version *v)
 {
-       v->version = LTTNG_UST_VERSION;
+       v->major = LTTNG_UST_MAJOR;
+       v->minor = LTTNG_UST_MINOR;
        v->patchlevel = LTTNG_UST_PATCHLEVEL;
-       v->sublevel = LTTNG_UST_SUBLEVEL;
        return 0;
 }
 
This page took 0.022988 seconds and 4 git commands to generate.