当前位置: 技术问答>linux和unix
shmget通过ftok得到的key值存在,如何删除?
来源: 互联网 发布时间:2017-03-28
本文导语: 第一次调用的时候程序可以正常运行,第二次就说已知存在。不知道怎么回事,请指导 代码A #include #include #include #include #include #include key_t key; int shmid; int *p; void handle(int s) { shmdt(p); exit(0); } main() { signa...
第一次调用的时候程序可以正常运行,第二次就说已知存在。不知道怎么回事,请指导
代码A
#include
#include
#include
#include
#include
#include
key_t key;
int shmid;
int *p;
void handle(int s)
{
shmdt(p);
exit(0);
}
main()
{
signal(SIGINT, handle);
key = ftok(".", 100);
if (key == -1) printf("ftok:%mn"), exit(-1);
printf("key=0x%xn", key);
shmid = shmget(key, 4, IPC_CREAT|IPC_EXCL|0666);
if (shmid == -1) printf("shmget:%mn"), exit(-1);
printf("id=%dn", shmid);
p = shmat(shmid, NULL, 0);
if (p == NULL || p == (void *)-1)
{
printf("shmat:%mn");
exit(-1);
}
printf("挂载OK!n");
while(1)
{
printf("%dn", *p);
sleep(1);
}
shmdt(p);
}
B
#include
#include
#include
#include
#include
key_t key;
int shmid;
int i;
int *p;
void handle(int s)
{
shmdt(p);
exit(0);
}
main()
{
signal(SIGINT, handle);
key = ftok(".", 100);
if (key == -1) printf("ftok:%mn"), exit(-1);
printf("key=0x%xn", key);
shmid = shmget(key, 4, 0);
if (shmid == -1) printf("shmget:%mn"), exit(-1);
printf("id=%dn", shmid);
p = shmat(shmid, 0, 0);
i = 0;
while(1)
{
i++;
*p = i;
sleep(1);
}
shmdt(p);
}
代码A
#include
#include
#include
#include
#include
#include
key_t key;
int shmid;
int *p;
void handle(int s)
{
shmdt(p);
exit(0);
}
main()
{
signal(SIGINT, handle);
key = ftok(".", 100);
if (key == -1) printf("ftok:%mn"), exit(-1);
printf("key=0x%xn", key);
shmid = shmget(key, 4, IPC_CREAT|IPC_EXCL|0666);
if (shmid == -1) printf("shmget:%mn"), exit(-1);
printf("id=%dn", shmid);
p = shmat(shmid, NULL, 0);
if (p == NULL || p == (void *)-1)
{
printf("shmat:%mn");
exit(-1);
}
printf("挂载OK!n");
while(1)
{
printf("%dn", *p);
sleep(1);
}
shmdt(p);
}
B
#include
#include
#include
#include
#include
key_t key;
int shmid;
int i;
int *p;
void handle(int s)
{
shmdt(p);
exit(0);
}
main()
{
signal(SIGINT, handle);
key = ftok(".", 100);
if (key == -1) printf("ftok:%mn"), exit(-1);
printf("key=0x%xn", key);
shmid = shmget(key, 4, 0);
if (shmid == -1) printf("shmget:%mn"), exit(-1);
printf("id=%dn", shmid);
p = shmat(shmid, 0, 0);
i = 0;
while(1)
{
i++;
*p = i;
sleep(1);
}
shmdt(p);
}
|
shmdt()与shmat()的作用相反,只是将进程与共享内存区的链接断开,并不实际删除共享内存区。使用“ipcs -m”命令会发现申请的共享内存依旧存在,所以会报错。使用shmctl()函数可以删除指定的共享内存,具体形式如下:shmctl(shmid, IPC_RMID, NULL);
具体说明请参考shmctl的man手册。
具体说明请参考shmctl的man手册。
|
楼上正解。。。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。