Я читаю исходный код распределителя памяти, и в файле gnuwrapper.cpp есть следующий код
#define CUSTOM_MALLOC(x) CUSTOM_PREFIX(malloc)(x)
В чем смысл CUSTOM_PREFIX(malloc)(x)
? CUSTOM_PREFIX
это функция? Но как функция это нигде не определено. Если это переменная, то как мы можем использовать переменную типа var(malloc)(x)
?
Еще код:
#ifndef __GNUC__
#error "This file requires the GNU compiler."
#endif
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
#ifndef CUSTOM_PREFIX ==> here looks like it's a variable, so if it doesn't define, then define here.
#define CUSTOM_PREFIX
#endif
#define CUSTOM_MALLOC(x) CUSTOM_PREFIX(malloc)(x) ===> what's the meaning of this?
#define CUSTOM_FREE(x) CUSTOM_PREFIX(free)(x)
#define CUSTOM_REALLOC(x,y) CUSTOM_PREFIX(realloc)(x,y)
#define CUSTOM_MEMALIGN(x,y) CUSTOM_PREFIX(memalign)(x,y)