windows平台上有没有像linux上的mmap()那样的内存映射API?

发布于 2024-09-30 03:01:06 字数 78 浏览 5 评论 0原文

是否有一个API可以进行内存映射,就像

mmap()

在Linux上一样?

Is there an api to do memory mapping, just like

mmap()

on linux?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

杀お生予夺 2024-10-07 03:01:06

取决于您到底想用它做什么。如果您想将现有文件映射到内存中,可以使用 memory- 支持映射文件。它们还可以用于在进程之间共享内存(使用没有底层文件的命名映射对象)。
如果您想映射物理内存,用户模式通常不支持,尽管有一些技巧。

Depends on what exactly you want to use it for. If you want to map existing files into memory, that's supported with memory-mapped files. They can also be used to share memory between processes (use named mapping object with no underlying file).
If you want to map physical memory, that's generally not supported from user mode, although there are some tricks.

烙印 2024-10-07 03:01:06

要内存映射文件或共享内存,可以使用 CreateFileMapping 正如其他答案所建议的那样。

但是,如果您使用 mmap 来分配页面(例如,编写内存分配器),则 Windows 等效项为 VirtualAlloc

To memory map a file or to share memory, you can use CreateFileMapping as the other answer suggests.

But if you're using mmap to allocate pages (to write a memory allocator, for instance) the Windows equivalent is VirtualAlloc.

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