以下基本上是我要做的:
使用双指针在不同作用域中分配的可用内存。以下代码不完整,但完全描述了我要执行的操作。
所以这是我读取缓冲区(C伪码)的函数
char *read_buffer(char *buf, myStruct **arr, int nbElm)
{
buf = malloc(...);
...//many things done (use of the read(),close()... functions
...//but not referencing any of the buffer to my structure
...
*arr = (myStruct *) = malloc(sizeof(myStruct) * nbElm);
return (buf);
}
以下是我在内存分配和释放尝试之间使用的函数:
void using_struct(myStruct *ar, int nbElm)
{
int i;
i = 0;
while (i < nbElm)
{
// Here I use my struct with no problems
// I can even retrieve its datas in the main scope
// not memory is allocated to it.
}
}
我的主要功能:
int main(void)
{
char *buf;
myStruct *arStruct;
int nbElm = 4;
buf = read_buffer(buf, &arStruct, nbElm);
using_struct(arStruct, nbElm);
free(buf);
buf = NULL;
free(arStruct);
while(1)
{;}
return (1);
}
唯一的问题是,我将while循环放在空闲函数之前或之后,使用top看不到任何内存变化在我的终端上。这正常吗?
提前感谢,
您必须始终具有与malloc调用完全相同数量的可释放调用。
myStruct **arr;
*arr = malloc(sizeof(myStruct) * nbElm);
这意味着你需要一次调用来释放第一个nbElm结构:
free(arr);