如何释放 sbrk() 获得的内存?
我有一个自定义分配器函数,它使用 sbrk() 来获取内存。 当不再需要该内存时,如何释放它?
malloc() 是否有相当于 free() 的函数?
或者我是否必须使用 brk() 来设置数据段的结尾?
I have a custom allocator function which uses sbrk() to obtain memory.
How do I release this memory when it's no longer needed?
Is there a function equivalent to free() for malloc() ?
or do I have to use brk() to set the end of the data segment ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要再次使用
brk
或sbrk
来缩小。最后,您必须修改内存量的唯一方法(除了像系统调用这样的 mmap 之外)是增加或减少堆,因此您可以使用
sbrk
或brk< /code> 并使用
brk
或sbrk
以负增量将其向下移动。You need to use
brk
orsbrk
again to shrink.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
orbrk
and you move it down withbrk
orsbrk
with a negative increment.不要使用
brk
和sbrk
。几乎不可能知道哪些库函数可能会调用malloc
,并且可能会随着时间的推移而发生变化,因此即使您的程序现在可以运行,当有人升级 libc 时它也可能会崩溃。它们被排除在 POSIX 之外是有充分理由的。Don't use
brk
andsbrk
. It's pretty much impossible to know which library functions might callmalloc
, and could change over time, so even if your program works now, it might break when somebody upgrades libc. They were excluded from POSIX for a very good reason.