Create a dedicated test suite for Perf
[lttng-tools.git] / src / bin / lttng-sessiond / ust-metadata.c
index 328d6ea4c414d15699c6c3aa84fdc70eede3b8e4..c1a80c746847a3161f28c143c487f5ccfcde194f 100644 (file)
@@ -28,6 +28,7 @@
 #include <unistd.h>
 #include <inttypes.h>
 #include <common/common.h>
+#include <common/time.h>
 
 #include "ust-registry.h"
 #include "ust-clock.h"
@@ -37,7 +38,6 @@
 #define max_t(type, a, b)      ((type) ((a) > (b) ? (a) : (b)))
 #endif
 
-#define NSEC_PER_SEC                   1000000000ULL
 #define NR_CLOCK_OFFSET_SAMPLES                10
 
 struct offset_sample {
@@ -305,7 +305,8 @@ int ust_metadata_enum_statedump(struct ust_registry_session *session,
                        goto end;
                }
 
-               if (entry->u.options.is_auto) {
+               if (entry->u.extra.options &
+                               USTCTL_UST_ENUM_ENTRY_OPTION_IS_AUTO) {
                        ret = lttng_metadata_printf(session, ",\n");
                        if (ret) {
                                goto end;
@@ -818,7 +819,7 @@ int measure_single_clock_offset(struct offset_sample *sample)
        int ret;
 
        monotonic[0] = trace_clock_read64();
-       ret = clock_gettime(CLOCK_REALTIME, &rts);
+       ret = lttng_clock_gettime(CLOCK_REALTIME, &rts);
        if (ret < 0) {
                return ret;
        }
This page took 0.025393 seconds and 4 git commands to generate.