TDengine/include/util/amalloc.h

52 lines
1.7 KiB
C
Raw Normal View History

2021-09-27 03:42:12 +00:00
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* 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.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TD_AMALLOC_H_
#define _TD_AMALLOC_H_
#include "os.h"
#ifdef __cplusplus
extern "C" {
#endif
2021-10-14 05:28:18 +00:00
#define AMALLOC_APIS \
void *(*malloc)(void *, size_t size); \
void *(*calloc)(void *, size_t nmemb, size_t size); \
void *(*realloc)(void *, size_t size); \
void (*free)(void *ptr);
2021-09-27 03:42:12 +00:00
// Interfaces to implement
typedef struct {
2021-10-14 05:28:18 +00:00
AMALLOC_APIS
2021-09-27 03:42:12 +00:00
} SMemAllocatorIf;
typedef struct {
2021-10-14 05:28:18 +00:00
void *impl;
AMALLOC_APIS
2021-09-27 03:42:12 +00:00
} SMemAllocator;
2021-10-14 05:28:18 +00:00
#define amalloc(allocator, size) ((allocator) ? (*((allocator)->malloc))((allocator)->impl, (size)) : malloc(size))
2021-09-27 09:08:02 +00:00
#define acalloc(allocator, nmemb, size) \
2021-10-14 05:28:18 +00:00
((allocator) ? (*((allocator)->calloc))((allocator)->impl, (nmemb), (size)) : calloc((nmemb), (size)))
2021-09-27 09:08:02 +00:00
#define arealloc(allocator, ptr, size) \
2021-10-14 05:28:18 +00:00
((allocator) ? (*((allocator)->realloc))((allocator)->impl, (ptr), (size)) : realloc((ptr), (size)))
#define afree(allocator, ptr, size) ((allocator) ? (*((allocator)->free))((allocator)->impl, (ptr), (size)) : free(ptr))
2021-09-27 03:42:12 +00:00
#ifdef __cplusplus
}
#endif
#endif /*_TD_AMALLOC_H_*/