Commit | Line | Data |
---|---|---|
a58c490f | 1 | /* |
ab5be9fa | 2 | * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
a58c490f | 3 | * |
ab5be9fa | 4 | * SPDX-License-Identifier: LGPL-2.1-only |
a58c490f | 5 | * |
a58c490f JG |
6 | */ |
7 | ||
8 | #ifndef LTTNG_ENDPOINT_H | |
9 | #define LTTNG_ENDPOINT_H | |
10 | ||
11 | #ifdef __cplusplus | |
12 | extern "C" { | |
13 | #endif | |
14 | ||
15 | /* Default LTTng session daemon endpoint singleton. */ | |
16 | extern struct lttng_endpoint *lttng_session_daemon_notification_endpoint; | |
17 | ||
18 | #ifdef __cplusplus | |
19 | } | |
20 | #endif | |
21 | ||
22 | #endif /* LTTNG_ENDPOINT_H */ |