diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 11:19:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:53:24 +0000 |
commit | b5f8ee61a7f7e9bd291dd26b0585d03eb686c941 (patch) | |
tree | d4d31289c39fc00da064a825df13a0b98ce95b10 /aclk/helpers | |
parent | Adding upstream version 1.44.3. (diff) | |
download | netdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.tar.xz netdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.zip |
Adding upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'aclk/helpers')
-rw-r--r-- | aclk/helpers/mqtt_wss_pal.h | 19 | ||||
-rw-r--r-- | aclk/helpers/ringbuffer_pal.h | 11 |
2 files changed, 0 insertions, 30 deletions
diff --git a/aclk/helpers/mqtt_wss_pal.h b/aclk/helpers/mqtt_wss_pal.h deleted file mode 100644 index 5c89f8bb..00000000 --- a/aclk/helpers/mqtt_wss_pal.h +++ /dev/null @@ -1,19 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#ifndef MQTT_WSS_PAL_H -#define MQTT_WSS_PAL_H - -#include "libnetdata/libnetdata.h" - -#undef OPENSSL_VERSION_095 -#undef OPENSSL_VERSION_097 -#undef OPENSSL_VERSION_110 -#undef OPENSSL_VERSION_111 - -#define mw_malloc(...) mallocz(__VA_ARGS__) -#define mw_calloc(...) callocz(__VA_ARGS__) -#define mw_free(...) freez(__VA_ARGS__) -#define mw_strdup(...) strdupz(__VA_ARGS__) -#define mw_realloc(...) reallocz(__VA_ARGS__) - -#endif /* MQTT_WSS_PAL_H */ diff --git a/aclk/helpers/ringbuffer_pal.h b/aclk/helpers/ringbuffer_pal.h deleted file mode 100644 index 2f7e1cb9..00000000 --- a/aclk/helpers/ringbuffer_pal.h +++ /dev/null @@ -1,11 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#ifndef RINGBUFFER_PAL_H -#define RINGBUFFER_PAL_H - -#include "libnetdata/libnetdata.h" - -#define crbuf_malloc(...) mallocz(__VA_ARGS__) -#define crbuf_free(...) freez(__VA_ARGS__) - -#endif /* RINGBUFFER_PAL_H */ |