Store the avl tree within collectd core.
[collectd.git] / src / utils_threshold.c
1 /**
2  * collectd - src/utils_threshold.c
3  * Copyright (C) 2014 Pierre-Yves Ritschard
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Author:
19  *   Pierre-Yves Ritschard <pyr at spootnik.org>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "utils_avltree.h"
25 #include "utils_threshold.h"
26
27 #include <pthread.h>
28
29 /*
30  * Exported symbols
31  * {{{ */
32 c_avl_tree_t   *threshold_tree = NULL;
33 pthread_mutex_t threshold_lock = PTHREAD_MUTEX_INITIALIZER;
34 /* }}} */