- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
C++ 中的共享内存对我来说是新事物,仍在学习,现在我发现它并不像我预期的那样工作。我想实现名为 CharBuffer 的类,它通过 CreateFileMapping 和 MapViewOfFile 函数将 char 数组映射到共享内存:
HANDLE hBuffer = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, size, shmBufferName);
char * buffer = (char *) MapViewOfFile(hBuffer, FILE_MAP_ALL_ACCESS, 0, 0, size);
向缓冲区添加字节是通过调用 CharBuffer 函数“add”实现的:
void CharBuffer::add(char * data, size_t size) {
memcpy(&buffer[0], &data[0], size);
}
没有检查数据大小,但这没问题,这只是我使用共享内存学习的测试应用程序。没关系,我可以将字节添加到缓冲区或成功地从缓冲区读取 - 没有错误,没有问题。我正在使用 CharBuffer 的第一个实例来做这件事。
但现在我想用 CharBuffer 的 second 实例打开共享内存,并读取或重写共享内存中的数据。对于开放和 map 内存,我使用:
HANDLE hBuffer = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, shmBufferName);
char * buffer = (char *) MapViewOfFile(hBuffer, FILE_MAP_ALL_ACCESS, 0, 0, size);
打开时没有错误。现在我要解决我的问题了。在第一个 实例中,我将 64 MB 复制到共享内存。当我尝试使用正确映射共享内存的 second 实例逐字节读取它们时(它打印数据正常)但是在资源监视器中我可以看到我有两倍的内存 - 128 MB。第一次添加数据后,内存占用 64 MB,但在通过第二个实例打印数据期间,内存增加了下一个 64 内存。
同样的问题是用second instance向内存写入数据。
我的目标是拥有有限的共享内存并由两个或多个 CharBuffer 实例使用它(读/写)。能否请您解释一下问题出在哪里或如何实现我想要的?
非常感谢。
最佳答案
我从未使用内存映射文件来降低内存消耗。我认为你的问题是 MapViewOfFile 总是返回指向唯一地址空间的指针,这将修改你页面文件中的相同页面。我试图在 MSDN 中找到证明这一点的证据,我只找到了这篇文章:
http://msdn.microsoft.com/en-us/library/ms810613.aspx
我想这解释了它:
As mentioned above, you can have multiple views of the same memory-mapped file, and they can overlap. But what about mapping two identical views of the same memory-mapped file? After learning how to unmap a view of a file, you could come to the conclusion that it would not be possible to have two identical views in a single process because their base address would be the same, and you wouldn't be able to distinguish between them. This is not true. Remember that the base address returned by either the MapViewOfFile or the MapViewOfFileEx function is not the base address of the file view. Rather, it is the base address in your process where the view begins. So mapping two identical views of the same memory-mapped file will produce two views having different base addresses, but nonetheless identical views of the same portion of the memory-mapped file.
The point of this little exercise is to emphasize that every view of a single memory-mapped file object is always mapped to a unique range of addresses in the process. The base address will be different for each view. For that reason the base address of a mapped view is all that is required to unmap the view.
因此 MapViewOfFile 将地址返回到内存,一旦提交将分配其自己的物理内存,这实际上会增加您的进程内存消耗 - 正如您所描述的。
[编辑]
实际上,我开始看到即使 MapViewOffFile 都将地址返回到唯一的虚拟地址空间,它们都由相同的物理 RAM 页支持。您可以在 Memory-Mapped Files and Coherence
中通过 c/c++ 在 Windows 中阅读此内容:
If multiple processes are mapping views of a single data file, the data is still coherent because there is still only one instance of each page of RAM within the data file—it's just that the pages of RAM are mapped into multiple process address spaces.
下面博客中的技巧也证明了这一点:
http://blogs.msdn.com/b/oldnewthing/archive/2003/10/07/55194.aspx
每次您访问文件 View 时,资源监视器都会向您显示内存消耗过高,这是因为它会显示工作集大小,据我所知,这可能会显示两次共享内存。
关于C++ 无法在我的 Windows 应用程序中重写共享内存。它分配新的内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21785719/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!