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
path: root/tests
diff options
context:
space:
mode:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-04-01 15:41:33 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-04-01 15:41:33 +0300
commitab58847de3da18b3a84699e2f638bb54cce6848e (patch)
tree9c64051b758ecb6986a674b8530d787ea3abaf02 /tests
parent913faf4d239bf5cf05d86f6176ceed1b2667b61f (diff)
.......... [DEV-2124] replaced zbx_mem_info_t with zbx_shmem_info_t
Diffstat (limited to 'tests')
-rw-r--r--tests/mocks/valuecache/valuecache_mock.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/mocks/valuecache/valuecache_mock.c b/tests/mocks/valuecache/valuecache_mock.c
index 455a7804211..6e4530e00b4 100644
--- a/tests/mocks/valuecache/valuecache_mock.c
+++ b/tests/mocks/valuecache/valuecache_mock.c
@@ -43,13 +43,13 @@ static zbx_timespec_t vcmock_ts;
int __wrap_zbx_mutex_create(zbx_mutex_t *mutex, zbx_mutex_name_t name, char **error);
void __wrap_zbx_mutex_destroy(zbx_mutex_t *mutex);
-int __wrap_zbx_shmem_create(zbx_mem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
+int __wrap_zbx_shmem_create(zbx_shmem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
int allow_oom, char **error);
-void __wrap_zbx_shmem_destroy(zbx_mem_info_t *info);
-void *__wrap___zbx_shmem_malloc(const char *file, int line, zbx_mem_info_t *info, const void *old, size_t size);
-void *__wrap___zbx_shmem_realloc(const char *file, int line, zbx_mem_info_t *info, void *old, size_t size);
-void __wrap___zbx_shmem_free(const char *file, int line, zbx_mem_info_t *info, void *ptr);
-void __wrap_zbx_shmem_dump_stats(int level, zbx_mem_info_t *info);
+void __wrap_zbx_shmem_destroy(zbx_shmem_info_t *info);
+void *__wrap___zbx_shmem_malloc(const char *file, int line, zbx_shmem_info_t *info, const void *old, size_t size);
+void *__wrap___zbx_shmem_realloc(const char *file, int line, zbx_shmem_info_t *info, void *old, size_t size);
+void __wrap___zbx_shmem_free(const char *file, int line, zbx_shmem_info_t *info, void *ptr);
+void __wrap_zbx_shmem_dump_stats(int level, zbx_shmem_info_t *info);
int __wrap_zbx_history_get_values(zbx_uint64_t itemid, int value_type, int start, int count, int end,
zbx_vector_history_record_t *values);
int __wrap_zbx_history_add_values(const zbx_vector_ptr_t *history);
@@ -479,7 +479,7 @@ void zbx_vcmock_free_dc_history(void *ptr)
*/
static zbx_mutex_t *vc_mutex = NULL;
-zbx_mem_info_t *vc_meminfo = NULL;
+zbx_shmem_info_t *vc_meminfo = NULL;
static size_t vcmock_mem = ZBX_MEBIBYTE * 1024;
@@ -497,7 +497,7 @@ void __wrap_zbx_mutex_destroy(zbx_mutex_t *mutex)
zbx_mock_assert_ptr_eq("Attempting to destroy unknown mutex", vc_mutex, mutex);
}
-int __wrap_zbx_shmem_create(zbx_mem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
+int __wrap_zbx_shmem_create(zbx_shmem_info_t **info, zbx_uint64_t size, const char *descr, const char *param,
int allow_oom, char **error)
{
*info = vc_meminfo;
@@ -510,12 +510,12 @@ int __wrap_zbx_shmem_create(zbx_mem_info_t **info, zbx_uint64_t size, const char
return SUCCEED;
}
-void __wrap_zbx_shmem_destroy(zbx_mem_info_t *info)
+void __wrap_zbx_shmem_destroy(zbx_shmem_info_t *info)
{
zbx_free(info);
}
-void *__wrap___zbx_shmem_malloc(const char *file, int line, zbx_mem_info_t *info, const void *old, size_t size)
+void *__wrap___zbx_shmem_malloc(const char *file, int line, zbx_shmem_info_t *info, const void *old, size_t size)
{
size_t *psize;
@@ -535,7 +535,7 @@ void *__wrap___zbx_shmem_malloc(const char *file, int line, zbx_mem_info_t *info
return (void *)(psize + 1);
}
-void *__wrap___zbx_shmem_realloc(const char *file, int line, zbx_mem_info_t *info, void *old, size_t size)
+void *__wrap___zbx_shmem_realloc(const char *file, int line, zbx_shmem_info_t *info, void *old, size_t size)
{
size_t *psize;
@@ -556,7 +556,7 @@ void *__wrap___zbx_shmem_realloc(const char *file, int line, zbx_mem_info_t *inf
return (void *)(psize + 1);
}
-void __wrap___zbx_shmem_free(const char *file, int line, zbx_mem_info_t *info, void *ptr)
+void __wrap___zbx_shmem_free(const char *file, int line, zbx_shmem_info_t *info, void *ptr)
{
size_t *psize;
@@ -575,7 +575,7 @@ void __wrap___zbx_shmem_free(const char *file, int line, zbx_mem_info_t *info, v
zbx_free(psize);
}
-void __wrap_zbx_shmem_dump_stats(int level, zbx_mem_info_t *info)
+void __wrap_zbx_shmem_dump_stats(int level, zbx_shmem_info_t *info)
{
ZBX_UNUSED(level);
ZBX_UNUSED(info);