我是 C 新手。我正在努力适应 malloc + free。我已经编写了以下测试代码,但由于某种原因内存没有完全释放(顶部仍然表示分配给进程的内存约为 150MB)。这是为什么?
#include <stdio.h>
#include <malloc.h>
typedef struct {
char *inner;
} structure;
int main()
{
int i;
structure** structureArray;
structureArray = (structure**)malloc(sizeof(structure*)*1000*10000);
for (i = 0; i < 1000*10000;i++)
{
structureArray[i] = (structure*) malloc(sizeof(structure));
structureArray[i]->inner = (char*) malloc(sizeof(char)*1000*1000*1000);
}
printf("freeing memory");
for (i = 0; i < 1000*10000;i++)
{
free(structureArray[i]->inner);
free(structureArray[i]);
}
free(structureArray);
system("sleep 100");
return 0;
}
对应的Makefile:
all: test.c
gcc -o test test.c
./test &
top -p `pidof ./test`
killall ./test