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