在Hoard(内存分配器)的geometrysizeclass.cpp 的源代码中,有一个未定义的函数。bool c2s(int)
它是什么,它有什么作用?
我正在尝试将hoard编译为VS2019中的库,忽略Makefile。
在Hoard(内存分配器)的geometrysizeclass.cpp 的源代码中,有一个未定义的函数。bool c2s(int)
它是什么,它有什么作用?
我正在尝试将hoard编译为VS2019中的库,忽略Makefile。
它在头文件中:
/// Quickly compute the maximum size for a given size class.
static unsigned long c2s (int cl) {
static size_t sizes[NUM_SIZECLASSES];
static bool init = createTable ((size_t *) sizes);
init = init;
return sizes[cl];
}