gpt4 book ai didi

c - 使用共享内存以及如何使用 IPC_RMID 正确取消分配空间

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

我有 2 个应用程序在我的 linux 机器上运行,一个服务器和一个客户端。我正在使用的服务器和客户端示例来自 Dave Marshalls examples .

一切正常,但是当我在我的后台进程中尝试这个并且我想扩展我的原始段时(可能由于将来的应用程序升级)我要么必须更改我的 key 或者以某种方式传递 shmctl (shmid, IPC_RMID, 0) 在我的应用程序中调用。由于我的应用程序无法正常退出,而且我无法在分配后一开始就将其设置为正确(因为一旦标记为删除,其他应用程序将无法使用此共享内存空间)我无法清理此空间。

到目前为止我想出的最好办法是 shmget 我的旧部分,检查它是否存在,如果存在则清除它,然后将它分配给一个高值。这看起来像:

void init_shared_mem(void)
{
int shmid;
key_t key = 0x1235; //key to be passed to shmget()
int oldSize = 27;
int newSize = 28;
char * shm;

//check to see if an allocation exists
if ((shmid = shmget(key, oldSize, IPC_CREAT | 0666)) < 0)
{
perror("shmget: shmget failed");
}
//unallocate it if it does
else if (shmctl(shmid , IPC_RMID , 0) == -1)
{
perror("shmid");
}


//reallocate new section
if ((shmid = shmget(key, newSize, IPC_CREAT | 0666)) < 0)
{
perror("shmget: shmget failed");
exit(1);
}

if ((shm = shmat(shmid, NULL, 0)) == (char *) -1)
{
perror("shmat");
exit(1);
}
}

其他 SO 问题要么似乎没有涉及到这一点,要么将其作为一个可能的问题提出来。有没有更好的方法来做到这一点,我错过了,或者我可以简单地将它重新分配到更高的值而不是清除它?

最佳答案

您没有说明您在哪个操作系统上运行。如果你在 Linux , OpenBSD 5.1 or laterother operating systems configured a particular way在完成 IPC_RMID 之后,您很可能能够附加,只要某些东西仍然附加到它,但请记住这种行为是不可移植的(这里是旧的 examination of IPC_RMID behaviour on different OSes )。如果没有这种行为,当您的程序崩溃时(又名“没有正常退出”),当它是附加到该段的最后一件事时,将很难避免遗留陈旧的段。

我还应该注意到,您的问题听起来与 Options for robust process cleanup 中讨论的问题相似在 UNIX Socket FAQ 论坛上,其中的建议包括:使用 Linux 的 IPC_RMID 行为,让监视父进程检查进程死亡并进行清理。

关于c - 使用共享内存以及如何使用 IPC_RMID 正确取消分配空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42478647/

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