#ifndef ZABBIX_SHMEM_H
#define ZABBIX_SHMEM_H
#include "zbxnix.h"
#define SHMEM_MIN_ALLOC 24
#define ZBX_SHMEM_MIN_BUCKET_SIZE SHMEM_MIN_ALLOC
#define SHMEM_MAX_BUCKET_SIZE 256
#define ZBX_SHMEM_BUCKET_COUNT ((SHMEM_MAX_BUCKET_SIZE - ZBX_SHMEM_MIN_BUCKET_SIZE) / 8 + 1)
typedef struct
{
void *base;
void **buckets;
void *lo_bound;
void *hi_bound;
zbx_uint64_t free_size;
zbx_uint64_t used_size;
zbx_uint64_t orig_size;
zbx_uint64_t total_size;
int shm_id;
char allow_oom;
const char *mem_descr;
const char *mem_param;
}
zbx_shmem_info_t;
typedef struct
{
zbx_uint64_t free_size;
zbx_uint64_t used_size;
zbx_uint64_t min_chunk_size;
zbx_uint64_t max_chunk_size;
zbx_uint64_t overhead;
unsigned int chunks_num[ZBX_SHMEM_BUCKET_COUNT];
unsigned int free_chunks;
unsigned int used_chunks;
}
zbx_shmem_stats_t;
int zbx_shmem_create(zbx_shmem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
int allow_oom, char **error);
int zbx_shmem_create_min(zbx_shmem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
int allow_oom, char **error);
void zbx_shmem_destroy(zbx_shmem_info_t *info);
#define zbx_shmem_malloc(info, old, size) __zbx_shmem_malloc(__FILE__, __LINE__, info, old, size)
#define zbx_shmem_realloc(info, old, size) __zbx_shmem_realloc(__FILE__, __LINE__, info, old, size)
#define zbx_shmem_free(info, ptr) \
\
do \
{ \
__zbx_shmem_free(__FILE__, __LINE__, info, ptr);\
ptr = NULL; \
} \
while (0)
void *__zbx_shmem_malloc(const char *file, int line, zbx_shmem_info_t *info, const void *old, size_t size);
void *__zbx_shmem_realloc(const char *file, int line, zbx_shmem_info_t *info, void *old, size_t size);
void __zbx_shmem_free(const char *file, int line, zbx_shmem_info_t *info, void *ptr);
void zbx_shmem_clear(zbx_shmem_info_t *info);
void zbx_shmem_get_stats(const zbx_shmem_info_t *info, zbx_shmem_stats_t *stats);
void zbx_shmem_dump_stats(int level, zbx_shmem_info_t *info);
size_t zbx_shmem_required_size(int chunks_num, const char *descr, const char *param);
zbx_uint64_t zbx_shmem_required_chunk_size(zbx_uint64_t size);
#define ZBX_SHMEM_FUNC1_DECL_MALLOC(__prefix) \
static void *__prefix ## _shmem_malloc_func(void *old, size_t size)