linux c语言进程间通信疑问,上述程序只是想父进程创建一个消息队列,发给子进程消息,但是为什么没有成功

#include<stdio.h>#include<sys/types.h>#include<sys/ipc.h>#include<sys/msg.h>#include<... #include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include<stdlib.h>
#include <string.h>

struct msgbuf
{
long type;
char a[20];
}sndmsg,rcvmsg;
int main()
{
char str[15]="abcedfg";
int status;
pid_t pid;
int msgid;
pid=fork();
if(pid < 0)
{
printf("errorjincheng");
exit(0);
}

else if(pid==0)
{
sleep(1);
printf("succedd");
if((status=msgrcv(msgid,&rcvmsg,sizeof(struct msgbuf),111,IPC_NOWAIT))==-1)
{
printf("error1");
exit(254);
}
printf("not succedd");
printf("the %cis%s",'a',rcvmsg.a);
msgctl(msgid,IPC_RMID,0);
exit(0);
}
else
{
if((msgid=msgget(IPC_PRIVATE,0666))==-1)
{
printf("error111");
exit(0);
}
sndmsg.type=111;
strcpy(sndmsg.a,str);
msgsnd(msgid,&sndmsg,sizeof(struct msgbuf),0);
}
}
展开
 我来答
折咏志0hfd5a
2011-08-26 · TA获得超过279个赞
知道小有建树答主
回答量:182
采纳率:0%
帮助的人:245万
展开全部

if((msgid=msgget(IPC_PRIVATE,0666))==-1)
{
printf("error111");
exit(0);
}
放到fork()函数之前就可以了。

创建消息队列需要在fork()之前,因为fork()产生的是两个进程,他们的资源是相互独立的。

fork()之后创建的消息队列,另一个进程不能识别。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式