Move the ringbuffer and counter clients to 'src/common/'
[lttng-ust.git] / src / common / counter-clients / clients.h
1 /*
2 * SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
3 *
4 * Copyright (C) 2020 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng lib counter client.
7 */
8
9 #ifndef _UST_COMMON_COUNTER_CLIENTS_CLIENTS_H
10 #define _UST_COMMON_COUNTER_CLIENTS_CLIENTS_H
11
12 void lttng_ust_counter_clients_init(void)
13 __attribute__((visibility("hidden")));
14
15 void lttng_ust_counter_clients_exit(void)
16 __attribute__((visibility("hidden")));
17
18 void lttng_counter_client_percpu_32_modular_init(void)
19 __attribute__((visibility("hidden")));
20
21 void lttng_counter_client_percpu_32_modular_exit(void)
22 __attribute__((visibility("hidden")));
23
24 void lttng_counter_client_percpu_64_modular_init(void)
25 __attribute__((visibility("hidden")));
26
27 void lttng_counter_client_percpu_64_modular_exit(void)
28 __attribute__((visibility("hidden")));
29
30 #endif /* _UST_COMMON_COUNTER_CLIENTS_CLIENTS_H */
This page took 0.036962 seconds and 4 git commands to generate.