More compile fixes
[lttng-ust.git] / liblttng-ust / lttng-ust-abi.c
index 435c86a673c8cb2652d6b992974b7846ae119108..6a568ba85690d77fcd351bc93c022a4c1a7f93d6 100644 (file)
 #include <lttng/ust-events.h>
 #include <lttng/usterr-signal-safe.h>
 #include "lttng/core.h"
+#include <lttng/ust-version.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 +250,9 @@ static
 long lttng_abi_tracer_version(int objd,
        struct lttng_ust_tracer_version *v)
 {
-       v->version = LTTNG_UST_VERSION;
-       v->patchlevel = LTTNG_UST_PATCHLEVEL;
-       v->sublevel = LTTNG_UST_SUBLEVEL;
+       v->major = LTTNG_UST_MAJOR_VERSION;
+       v->minor = LTTNG_UST_MINOR_VERSION;
+       v->patchlevel = LTTNG_UST_PATCHLEVEL_VERSION;
        return 0;
 }
 
This page took 0.023451 seconds and 4 git commands to generate.