Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Veksler <Mihails.Vekslers@zabbix.com>2021-09-21 15:44:10 +0300
committerMichael Veksler <Mihails.Vekslers@zabbix.com>2021-09-21 15:44:10 +0300
commitc11c067d8d3b6341c3ab1ca945c827a48497687e (patch)
tree155d4edc2a6c98424814ba1da7faad68c02fc2ff /include/zbxalgo.h
parenta0172814e3e8ff5830f0bb1dc923f16b16cb28ea (diff)
.......PS. [ZBXNEXT-6879] added histogram_quantile() function
Diffstat (limited to 'include/zbxalgo.h')
-rw-r--r--include/zbxalgo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/zbxalgo.h b/include/zbxalgo.h
index 70e54b82b5d..933fb87ce12 100644
--- a/include/zbxalgo.h
+++ b/include/zbxalgo.h
@@ -59,6 +59,7 @@ int zbx_default_uint64_ptr_compare_func(const void *d1, const void *d2);
int zbx_default_str_compare_func(const void *d1, const void *d2);
int zbx_default_ptr_compare_func(const void *d1, const void *d2);
int zbx_default_uint64_pair_compare_func(const void *d1, const void *d2);
+int zbx_default_dbl_compare_func(const void *d1, const void *d2);
#define ZBX_DEFAULT_INT_COMPARE_FUNC zbx_default_int_compare_func
#define ZBX_DEFAULT_UINT64_COMPARE_FUNC zbx_default_uint64_compare_func
@@ -66,6 +67,7 @@ int zbx_default_uint64_pair_compare_func(const void *d1, const void *d2);
#define ZBX_DEFAULT_STR_COMPARE_FUNC zbx_default_str_compare_func
#define ZBX_DEFAULT_PTR_COMPARE_FUNC zbx_default_ptr_compare_func
#define ZBX_DEFAULT_UINT64_PAIR_COMPARE_FUNC zbx_default_uint64_pair_compare_func
+#define ZBX_DEFAULT_DBL_COMPARE_FUNC zbx_default_dbl_compare_func
typedef void *(*zbx_mem_malloc_func_t)(void *old, size_t size);
typedef void *(*zbx_mem_realloc_func_t)(void *old, size_t size);