| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_JUDY_MALLOC_H |
| 4 | #define NETDATA_JUDY_MALLOC_H |
| 5 | |
| 6 | #include "../libnetdata.h" |
| 7 | |
| 8 | size_t judy_aral_free_bytes(void); |
| 9 | size_t judy_aral_structures(void); |
| 10 | struct aral_statistics *judy_aral_statistics(void); |
| 11 | |
| 12 | void JudyAllocThreadPulseReset(void); |
| 13 | int64_t JudyAllocThreadPulseGetAndReset(void); |
| 14 | |
| 15 | void libjudy_malloc_init(void); |
| 16 | |
| 17 | #endif //NETDATA_JUDY_MALLOC_H |