2 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_SESSION_INTERNAL_H
9 #define LTTNG_SESSION_INTERNAL_H
11 #include <common/macros.hpp>
12 #include <common/make-unique-wrapper.hpp>
14 #include <lttng/constant.h>
18 struct lttng_session_extended {
22 } LTTNG_PACKED creation_time;
25 using lttng_session_uptr =
26 std::unique_ptr<lttng_session[],
27 lttng::memory::create_deleter_class<lttng_session, lttng::free>::deleter>;
29 #endif /* LTTNG_SESSION_INTERNAL_H */