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