gpt4 book ai didi

c - 如何正确使用 shm_open 和 mmap

转载 作者:行者123 更新时间:2023-12-04 12:26:32 26 4
gpt4 key购买 nike

我正在尝试使用我在网上找到的示例和文档来创建共享内存区域。我的目标是 IPC ,所以我可以让不同的进程相互通信。

这是我的 C 文件

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

int main (int argc, char *argv[])
{

struct stat sb;
off_t len;
char *p;
int fd;

fd = shm_open("test", O_RDWR | O_CREAT); //,S_IRUSR | S_IWUSR);

if (fd == -1) {
perror("open");
return 1;
}

if (fstat(fd, &sb)==-1){
perror("fstat");
return 1;
}

/*if (!S_ISREG(sb.st_mode)){
fprintf(stderr, "%s is not a file\n",fileName);
return 1;
}*/

p = mmap(0, sb.st_size, PROT_WRITE, MAP_SHARED, fd, 0);
if (p == MAP_FAILED){
perror("mmap");


return 1;

}

if (close(fd)==-1) {
perror("close");
return 1;

}
for (len = 0; len < sb.st_size; len++) {
putchar(p[len]);

}

if (munmap(p, sb.st_size) == -1) {
perror("munmao");
return 1;
}
fprintf(stderr,"\n");
return 0;
}

问题是我得到了一个 mmap: Invalid argument。我认为 fd 有问题,但不知道如何修复它,任何帮助将不胜感激。我在优胜美地使用最新的 XCODE 。

最佳答案

您需要扩展共享内存映射的大小,至少在创建它时是第一次。现在它的大小为 0,并且 mmap 不允许您进行零长度映射。

所以,而不是你的 fstat() 调用,做例如:

size_t len = 4096;
if (ftruncate(fd, len) == -1) {
perror("ftruncate");
return 1;
}

并通过此 len到 mmap()。

关于c - 如何正确使用 shm_open 和 mmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34969547/

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