在 Windows 上自动替换内存映射

发布于 2025-01-01 03:55:59 字数 298 浏览 2 评论 0原文

有什么方法可以自动替换 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文