sessiond: transition from lttng-ust to tracer agnostic API
[lttng-tools.git] / src / bin / lttng-sessiond / ust-metadata.cpp
1 /*
2 * Copyright (C) 2010-2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #define _LGPL_SOURCE
9 #include <inttypes.h>
10 #include <limits.h>
11 #include <stdarg.h>
12 #include <stdint.h>
13 #include <stdio.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <vector>
17
18 #include <common/common.hpp>
19 #include <common/exception.hpp>
20 #include <common/format.hpp>
21 #include <common/time.hpp>
22 #include <common/uuid.hpp>
23
24 #include "ust-app.hpp"
25 #include "ust-clock-class.hpp"
26 #include "ust-registry.hpp"
27 #include "tsdl-environment-visitor.hpp"
28
29 namespace ls = lttng::sessiond;
30 namespace lsu = lttng::sessiond::ust;
This page took 0.029158 seconds and 4 git commands to generate.