Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
3 | * | |
4 | * SPDX-License-Identifier: LGPL-2.1-only | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef LTTNG_SESSION_INTERNAL_H | |
9 | #define LTTNG_SESSION_INTERNAL_H | |
10 | ||
11 | #include <lttng/constant.h> | |
12 | #include <common/macros.h> | |
13 | ||
14 | struct lttng_session_extended { | |
15 | struct { | |
16 | uint64_t value; | |
17 | uint8_t is_set; | |
18 | } creation_time LTTNG_PACKED; | |
19 | } LTTNG_PACKED; | |
20 | ||
21 | #endif /* LTTNG_SESSION_INTERNAL_H */ |