Fix: put back the high-throughput test removed by mistake
[lttng-tools.git] / tests / tools / health / health_exit.c
CommitLineData
9e32c5c0
CB
1/*
2 * Copyright (C) 2012 - Christian Babeux <christian.babeux@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#include <stdlib.h>
19#include <string.h>
20#include <pthread.h>
21
22/*
23 * Check if the specified environment variable is set.
24 * Return 1 if set, otherwise 0.
25 */
26int check_env_var(const char *env)
27{
28 if (env) {
29 char *env_val = getenv(env);
30 if (env_val && (strncmp(env_val, "1", 1) == 0)) {
31 return 1;
32 }
33 }
34
35 return 0;
36}
37
38void __testpoint_thread_manage_clients(void)
39{
40 const char *var = "LTTNG_THREAD_MANAGE_CLIENTS_EXIT";
41
42 if (check_env_var(var)) {
43 pthread_exit(NULL);
44 }
45}
46
47void __testpoint_thread_registration_apps(void)
48{
49 const char *var = "LTTNG_THREAD_REG_APPS_EXIT";
50
51 if (check_env_var(var)) {
52 pthread_exit(NULL);
53 }
54}
55
56void __testpoint_thread_manage_apps(void)
57{
58 const char *var = "LTTNG_THREAD_MANAGE_APPS_EXIT";
59
60 if (check_env_var(var)) {
61 pthread_exit(NULL);
62 }
63}
64
65void __testpoint_thread_manage_kernel(void)
66{
67 const char *var = "LTTNG_THREAD_MANAGE_KERNEL_EXIT";
68
69 if (check_env_var(var)) {
70 pthread_exit(NULL);
71 }
72}
73
74void __testpoint_thread_manage_consumer(void)
75{
76 const char *var = "LTTNG_THREAD_MANAGE_CONSUMER_EXIT";
77
78 if (check_env_var(var)) {
79 pthread_exit(NULL);
80 }
81}
This page took 0.026589 seconds and 5 git commands to generate.