在 Windows 上自动替换内存映射
有什么方法可以自动替换 Windows 上的内存映射吗?
在 Unix 上,具有 MAP_FIXED 的 mmap() 将自动替换映射到请求地址的页面。
但在 Windows 上,如果页面已映射到某个地址,则不能在该地址上使用 MapViewOfFileEx()。必须首先取消现有页面的映射,例如使用 UnmapViewOfFile()。这意味着在一段时间内该地址是未分配的,因此如果另一个线程同时创建内存映射,它可能会被放置在该地址处。
Windows 中是否有一个接口可以在不修改内核的情况下解决这个问题?也许直接使用系统调用?
Is there any way to atomically replace a memory mapping on Windows?
On Unix, mmap() with MAP_FIXED will atomically replace the page mapped at the requested address.
But on Windows, MapViewOfFileEx() can't be used on an address if a page is already mapped there. The existing page must first be unmapped, e.g. with UnmapViewOfFile(). This means there is a short period during which the address is unallocated, so if another thread creates a memory mapping concurrently it might be placed at this address.
Is there an interface in Windows that gets around this problem, without modifying the kernel? Perhaps using system calls directly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论