Move the ringbuffer and counter clients to 'src/common/'
[lttng-ust.git] / src / common / counter-clients / clients.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
7 #include "common/counter-clients/clients.h"
8
9 void lttng_ust_counter_clients_init(void)
10 {
11 lttng_counter_client_percpu_64_modular_init();
12 lttng_counter_client_percpu_32_modular_init();
13 }
14
15 void lttng_ust_counter_clients_exit(void)
16 {
17 lttng_counter_client_percpu_32_modular_exit();
18 lttng_counter_client_percpu_64_modular_exit();
19 }
This page took 0.029807 seconds and 4 git commands to generate.