其他分享
首页 > 其他分享> > c-具有非null shmaddr的Shmat

c-具有非null shmaddr的Shmat

作者:互联网

有人可以提供一个示例(合理地)将shmat()函数与第二个非空参数一起使用吗?

该手册说:

#include <sys/shm.h>

void *shmat(int shmid, const void *shmaddr, int shmflg);

The shmat() function attaches the shared memory segment associated with the shared memory identifier shmid to the data segment of the calling process. The segment is attached at the address specified by one of the following criteria:

  • If shmaddr is a NULL pointer, the segment is attached at the first available address as selected by the system.
  • If shmaddr is not a NULL pointer and (shmflg & SHM_RND) is non-zero, the segment is attached at the address given by (shmaddr – (shmaddr % SHMLBA)).
  • If shmaddr is not a NULL pointer and (shmflg & SHM_RND) is 0, the segment is attached at the address given by shmaddr.

但是我从未见过将shmaddr设置为NULL的任何shmat实例.在我的项目中,一个进程必须将其附加到malloc()的一块内存上,并且可以很好地使用它,然后另一个进程(通过shmid)获取了指向该共享内存的指针,然后在尝试执行以下操作时出现段错误访问内存.

解决方法:

这里的想法是将共享段放在不同进程中的相同虚拟地址上,以便它们可以使用普通指针(而不是偏移量)来寻址共享内存中的项.常见的情况是单个“主”进程将内存映射到内核提供的地址(第二个参数为零),然后通过一些带外通道将该地址传递给“工作”进程(例如带有fork / exec的命令参数) ,UNIX套接字,FIFO等),然后“工作者”尝试将段映射到该地址.同样,这个想法是,如果内核能够在给定的VA上为“主服务器”映射共享内存,那么对于“工人​​”进程来说,使用相同的地址就可以了.

我没有要指出的“合理”例子.您可以看一下Postgres如何与共享内存一起工作.不过有点涉及.

标签:posix,shared-memory,c-3,linux
来源: https://codeday.me/bug/20191210/2100576.html