问题描述
我有一个使用SBRK()来获取存储自定义分配器的功能。
我如何释放这个内存时,它不再需要?
I have a custom allocator function which uses sbrk() to obtain memory.How do I release this memory when it's no longer needed?
是否有一个功能相当于给free()的malloc()函数?
Is there a function equivalent to free() for malloc() ?
或做我必须使用BRK()来设置数据段的结束?
or do I have to use brk() to set the end of the data segment ?
推荐答案
您需要使用 BRK
或 SBRK
再次萎缩。
You need to use brk
or sbrk
again to shrink.
在你到底有没有修改的内存(除了像系统调用MMAP)量的唯一途径,就是增加或减少堆,让你与 SBRK $ C动起来$ C>或
BRK
键,您将它打倒 BRK
或 SBRK
带负增长。
In the end the only way you have to modify the amount of memory(apart from mmap like syscalls), is to increase or decrease the heap, so you move it up with sbrk
or brk
and you move it down with brk
or sbrk
with a negative increment.
这篇关于我如何释放被SBRK获得内存()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!