Clean-up: remove instances of loop initial declarations
[lttng-tools.git] / include / lttng / endpoint-internal.h
1 /*
2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #ifndef LTTNG_ENDPOINT_INTERNAL_H
9 #define LTTNG_ENDPOINT_INTERNAL_H
10
11 #include <lttng/endpoint.h>
12 #include <common/macros.h>
13
14 enum lttng_endpoint_type {
15 LTTNG_ENDPOINT_TYPE_DEFAULT_SESSIOND_NOTIFICATION = 0,
16 };
17
18 struct lttng_endpoint {
19 enum lttng_endpoint_type type;
20 };
21
22 #endif /* LTTNG_ENDPOINT_INTERNAL_H */
This page took 0.030424 seconds and 5 git commands to generate.