1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
** Zabbix
** Copyright (C) 2001-2014 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
#ifndef ZABBIX_MEMALLOC_H
#define ZABBIX_MEMALLOC_H
#include "common.h"
#include "mutexs.h"
typedef struct
{
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 use_lock;
/* Continue execution in out of memory situation. */
/* Normally allocator forces exit when it runs out of allocatable memory. */
/* Set this flag to 1 to allow execution in out of memory situations. */
char allow_oom;
ZBX_MUTEX mem_lock;
const char *mem_descr;
const char *mem_param;
}
zbx_mem_info_t;
void zbx_mem_create(zbx_mem_info_t **info, key_t shm_key, int lock_name, zbx_uint64_t size,
const char *descr, const char *param, int allow_oom);
void zbx_mem_destroy(zbx_mem_info_t *info);
#define zbx_mem_malloc(info, old, size) __zbx_mem_malloc(__FILE__, __LINE__, info, old, size)
#define zbx_mem_realloc(info, old, size) __zbx_mem_realloc(__FILE__, __LINE__, info, old, size)
#define zbx_mem_free(info, ptr) \
\
do \
{ \
__zbx_mem_free(__FILE__, __LINE__, info, ptr); \
ptr = NULL; \
} while (0)
void *__zbx_mem_malloc(const char *file, int line, zbx_mem_info_t *info, const void *old, size_t size);
void *__zbx_mem_realloc(const char *file, int line, zbx_mem_info_t *info, void *old, size_t size);
void __zbx_mem_free(const char *file, int line, zbx_mem_info_t *info, void *ptr);
void zbx_mem_clear(zbx_mem_info_t *info);
void zbx_mem_dump_stats(zbx_mem_info_t *info);
size_t zbx_mem_required_size(int chunks_num, const char *descr, const char *param);
#define ZBX_MEM_FUNC1_DECL_MALLOC(__prefix) \
static void *__prefix ## _mem_malloc_func(void *old, size_t size)
#define ZBX_MEM_FUNC1_DECL_REALLOC(__prefix) \
static void *__prefix ## _mem_realloc_func(void *old, size_t size)
#define ZBX_MEM_FUNC1_DECL_FREE(__prefix) \
static void __prefix ## _mem_free_func(void *ptr)
#define ZBX_MEM_FUNC1_IMPL_MALLOC(__prefix, __info) \
\
static void *__prefix ## _mem_malloc_func(void *old, size_t size) \
{ \
return zbx_mem_malloc(__info, old, size); \
}
#define ZBX_MEM_FUNC1_IMPL_REALLOC(__prefix, __info) \
\
static void *__prefix ## _mem_realloc_func(void *old, size_t size) \
{ \
return zbx_mem_realloc(__info, old, size); \
}
#define ZBX_MEM_FUNC1_IMPL_FREE(__prefix, __info) \
\
static void __prefix ## _mem_free_func(void *ptr) \
{ \
zbx_mem_free(__info, ptr); \
}
#define ZBX_MEM_FUNC_DECL(__prefix) \
\
ZBX_MEM_FUNC1_DECL_MALLOC(__prefix); \
ZBX_MEM_FUNC1_DECL_REALLOC(__prefix); \
ZBX_MEM_FUNC1_DECL_FREE(__prefix);
#define ZBX_MEM_FUNC_IMPL(__prefix, __info) \
\
ZBX_MEM_FUNC1_IMPL_MALLOC(__prefix, __info); \
ZBX_MEM_FUNC1_IMPL_REALLOC(__prefix, __info); \
ZBX_MEM_FUNC1_IMPL_FREE(__prefix, __info);
#endif
|