我正在尝试学习IPC UNIX API,特别是共享内存。我创建了这个小程序,试图访问共享内存段或创建一个。
这就是我的所作所为:
gcc -Wall -Wextra *.c
# in one terminal
./a.out
# in another
/a.out
您可以在源IS中看到的shared.mem
文件出现在我启动可执行文件的同一目录中。
然而,似乎我实际上从未真正访问过以前创建的共享内存段(错误是“没有这样的文件或目录”)。我总是创建一个新的 - 通过ipcs
命令行看到,即使IPC密钥保持不变。
我做错了什么?
以下是我使用的代码,供参考。它至少在Linux上编译。
#include <signal.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define exit_error(what) exit_error_func(what, __FILE__, __LINE__)
#define SHM_SIZE (64)
#define UNUSED(x) (void)(x)
void *shm_addr = NULL;
void exit_error_func(const char *what, const char *file, int line)
{
fprintf(stderr, "Error in %s at line %d: %s. Reason: %s.\n", file, line, what, strerror(errno));
exit(1);
}
void sigint_handler(int sig)
{
shmdt(shm_addr);
UNUSED(sig);
}
int main(void)
{
key_t ipc_key;
int shm_id;
if ((ipc_key = ftok("shared.mem", 1)) == -1)
exit_error("could not get IPC key");
printf("IPC key is %d\n", ipc_key);
if ((shm_id = shmget(ipc_key, SHM_SIZE, 0600)) == -1)
{
printf("could not get SHM id, trying to create one now\n");
if ((shm_id = shmget(ipc_key, SHM_SIZE, IPC_EXCL | IPC_CREAT | 0600)) == -1)
exit_error("could not create or get shared memory segment");
else
printf("created SHM id\n");
}
else
printf("got already existing SHM id\n");
printf("SHM id is %d\n", shm_id);
if ((shm_addr = shmat(shm_id, NULL, 0)) == (void *)-1)
exit_error("could not attach to segment");
signal(SIGINT, sigint_handler);
if (shmctl(shm_id, IPC_RMID, NULL) == -1)
exit_error("could not flag shared memory for deletion");
printf("SHM flagged for deletion\n");
while (1)
sleep(1);
return (0);
}
答案 0 :(得分:0)
似乎shmget
标记为删除的共享内存段是不可能的。因此,一旦没有进程需要shmget
,就必须将共享内存段标记为删除。
免责声明:我不是UNIX专家。虽然建议的解决方案对我有用,但我仍然在学习,不能保证这里给出的信息的准确性。