Move the ringbuffer and counter clients to 'src/common/'
[lttng-ust.git] / src / common / counter-clients / clients.c
diff --git a/src/common/counter-clients/clients.c b/src/common/counter-clients/clients.c
new file mode 100644 (file)
index 0000000..e22667c
--- /dev/null
@@ -0,0 +1,19 @@
+/*
+ * SPDX-License-Identifier: LGPL-2.1-only
+ *
+ * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ */
+
+#include "common/counter-clients/clients.h"
+
+void lttng_ust_counter_clients_init(void)
+{
+       lttng_counter_client_percpu_64_modular_init();
+       lttng_counter_client_percpu_32_modular_init();
+}
+
+void lttng_ust_counter_clients_exit(void)
+{
+       lttng_counter_client_percpu_32_modular_exit();
+       lttng_counter_client_percpu_64_modular_exit();
+}
This page took 0.024106 seconds and 4 git commands to generate.