windows平台上有没有像linux上的mmap()那样的内存映射API?
是否有一个API可以进行内存映射,就像
mmap()
在Linux上一样?
Is there an api to do memory mapping, just like
mmap()
on linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于您到底想用它做什么。如果您想将现有文件映射到内存中,可以使用 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.
要内存映射文件或共享内存,可以使用
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 isVirtualAlloc
.