gpt4 book ai didi

创建共享内存段

转载 作者:太空宇宙 更新时间:2023-11-04 02:43:56 25 4
gpt4 key购买 nike

我在 C 中有这个结构:

struct first {
struct list *buf;
struct pointers *ptr;
};

创建共享内存段的函数:

void * create_shared_memory(char *name, int size){

int *ptr;
int ret;


int fd = shm_open (name, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);

if (fd == -1) {
perror ("shm_open error!");
exit (1);
}

ret = ftruncate (fd, sizeof (size));

if (ret == -1) {
perror ("ftruncate error!");
exit (2);
}

ptr = mmap(0, sizeof (size), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);

if (ptr == MAP_FAILED) {
perror ("shm-mmap error!");
exit (3);
}

以及为该结构创建共享内存段的函数:

void shared_memory_structure(){

create_shared_memory("struct", sizeof(struct first));

}

但是我得到一个错误。我发现问题是结构内部的指针没有指向我刚刚创建的共享内存段。我该怎么做?

最佳答案

先试试这段代码。这是取自 http://blog.csdn.net/liuzhanchen1987/article/details/7455208 的演示代码,这是中文:

#include <sys/mman.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>

typedef struct{
char name[4];
int age;
}people;

int
main(int argc, char** argv)
{
int i;
people *p_map;
char temp;
p_map=(people*)mmap(NULL,sizeof(people)*10,PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS,-1,0);
if(fork() == 0)
{
sleep(2);
for(i = 0;i<5;i++)
printf("child read: the %d people's age is %d\n",i+1,(*(p_map+i)).age);
(*p_map).age = 100;
munmap(p_map,sizeof(people)*10);
exit();
}
temp = 'a';
for(i = 0;i<5;i++)
{
temp += 1;
memcpy((*(p_map+i)).name, &temp,2);
(*(p_map+i)).age=20+i;
}
sleep(5);
printf( "parent read: the first people,s age is %d\n",(*p_map).age );
printf("umap\n");
munmap( p_map,sizeof(people)*10 );
printf( "umap ok\n" );
return 0;
}

预期结果:

child read: the 1 people's age is 20
child read: the 2 people's age is 21
child read: the 3 people's age is 22
child read: the 4 people's age is 23
child read: the 5 people's age is 24
parent read: the first people,s age is 100
umap
umap ok

其中

mmap(NULL,size,PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS,-1,0);

所有你在forking之前需要做的(以及它的返回值检查代码),它的返回值将是分配的页面起始地址(如果它有效的话)。

如果所有进程都被 fork 。只使用 mmap 分配匿名页面非常方便,而且进程被收集后没有副作用。

如果您使用 shm_open,那么在某处将创建一个共享内存对象,并且它的副作用将保留在您的系统中,即使在您的所有进程都被收集之后。但是,当您计划让两个不相关的进程相互对话时,这是必要的。

关于创建共享内存段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29238015/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com