Linux 中的 HeapCreate、HeapAlloc、Linux 的私有分配器
在 Windows 中,对于要求非常高的应用程序,程序员可以使用 HeapCreate、HeapAlloc 来更好地管理和控制内存分配,加快速度(也称为私有分配器)。 Linux C++ 编程中的等价物是什么?
In Windows, for very demanding applications, a programmer may use HeapCreate, HeapAlloc in order to better manage and control the allocation of memory- speed it up (aka private allocators). What is the equivalent in Linux c++ programming?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想使用自己的私有分配器,请使用
mmap()
将一定量的内存映射到您的进程中,然后您可以根据需要使用该内存。打开/dev/zero
的文件描述符,然后将其用作mmap()
的“fildes”参数。有关要传递的参数的完整详细信息,请参阅man mmap
。在这方面,mmap()
与HeapCreate()
起着相同的作用。If you want to use your own private allocator, then use
mmap()
to map an amount of memory into your process, then you can use that memory as you like. Open a file descriptor to/dev/zero
, and then use that as the 'fildes' parameter tommap()
. Seeman mmap
for full details of the parameters to pass. In this respectmmap()
plays the same role asHeapCreate()
.