Linux 中的 HeapCreate、HeapAlloc、Linux 的私有分配器

发布于 2024-09-02 13:00:35 字数 112 浏览 5 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2024-09-09 13:00:35

如果您想使用自己的私有分配器,请使用 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 to mmap(). See man mmap for full details of the parameters to pass. In this respect mmap() plays the same role as HeapCreate().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文