Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
3 | * | |
4 | * SPDX-License-Identifier: LGPL-2.1-only | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef LTTNG_CHANNEL_INTERNAL_H | |
9 | #define LTTNG_CHANNEL_INTERNAL_H | |
10 | ||
11 | #include <common/macros.h> | |
12 | ||
13 | struct lttng_channel_extended { | |
14 | uint64_t discarded_events; | |
15 | uint64_t lost_packets; | |
16 | uint64_t monitor_timer_interval; | |
17 | int64_t blocking_timeout; | |
18 | } LTTNG_PACKED; | |
19 | ||
20 | #endif /* LTTNG_CHANNEL_INTERNAL_H */ |