我正在阅读这本教科书的 POSIX 共享内存部分。在我进行一些更改之前,我无法从书中获取代码进行编译。我了解共享内存的概念以及如何打开它,但我仍然对读/写感到困惑。教科书代码显示了一个 hello world 字符串示例,但我不确定如何将其应用于整数、数组、结构等。这是我正在使用的教科书代码。这是写的。
const int SIZE = 4096;
const char *name = "OS";
const char *message_0 = "Hello";
const char *message_1 = "World!";
int shm_fd;
void *ptr;
shm_fd = shm_open(name, O_CREAT | O_RDWR, 0666);
ftruncate(shm_fd, SIZE);
ptr = mmap(0, SIZE, PROT_WRITE, MAP_SHARED, shm_fd, 0);
//sprintf(ptr, "%s", message_0); //non working text book code
sprintf((char*)ptr, "%s", message_0); //my change to get it to work
ptr += strlen(message_0);
//sprintf(ptr, "%s", message_1);
sprintf((char*)ptr, "%s", message_1);
ptr += strlen(message_1);
这是阅读。
const int SIZE = 4096;
const char *name = "OS";
int shm_fd;
void *ptr;
shm_fd = shm_open(name, O_RDONLY, 0666);
ptr = mmap(0, SIZE, PROT_READ, MAP_SHARED, shm_fd, 0);
printf("%s", (char*)ptr);
shm_unlink(name);
我尝试将其更改为写入/读取整数,但我无法让它工作。我的印象是我应该能够为整数做一些事情,比如:
*ptr = 2;
ptr++;
但是,我无法做到这一点,或者我试图以任何其他方式工作。谁能更好地解释一下?谢谢。