Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 2020 Simon Marchi <simon.marchi@efficios.com> | |
3 | * | |
4 | * SPDX-License-Identifier: LGPL-2.1-only | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef LTTNG_DOMAIN_INTERNAL_H | |
9 | #define LTTNG_DOMAIN_INTERNAL_H | |
10 | ||
11 | #include "lttng/domain.h" | |
12 | #include "common/macros.h" | |
13 | ||
14 | #ifdef __cplusplus | |
15 | extern "C" { | |
16 | #endif | |
17 | ||
18 | LTTNG_HIDDEN | |
19 | const char *lttng_domain_type_str(enum lttng_domain_type domain_type); | |
20 | ||
21 | #ifdef __cplusplus | |
22 | } | |
23 | #endif | |
24 | ||
25 | #endif /* LTTNG_DOMAIN_INTERNAL_H */ |