LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 979|回复: 3

请教LINUX C问题

[复制链接]
发表于 2007-6-8 23:02:11 | 显示全部楼层 |阅读模式
main( )
{
int fd[2];
char outpipe[100],inpipe[100];
pipe(fd); /*创建一个管道*/
while ((pid1=fork( ))= =-1);
if(pid1= =0)
{
lockf(fd[1],1,0);
sprintf(outpipe,"child 1 process is sending message!");
/*把串放入数组outpipe中*/
write(fd[1],outpipe,50); /*向管道写长为50字节的串*/
sleep(5); /*自我阻塞5秒*/
lockf(fd[1],0,0);
exit(0);
}
else
{
while((pid2=fork( ))= =-1);
if(pid2= =0)
{ lockf(fd[1],1,0); /*互斥*/
sprintf(outpipe,"child 2 process is sending message!");
write(fd[1],outpipe,50);
sleep(5);
lockf(fd[1],0,0);
exit(0);
}
else
{ wait(0); /*同步*/
read(fd[0],inpipe,50); /*从管道中读长为50字节的串*/
printf("%s\n",inpipe);
wait(0);
read(fd[0],inpipe,50);
printf("%s\n",inpipe);
exit(0);
}
}
}

这样一个程序,为什么执行结果是
child 1 process is sending message!
child 2 process is sending message!
而不执行printf("%s\n",inpipe);呢?
 楼主| 发表于 2007-6-8 23:23:00 | 显示全部楼层
我明白了,不用大家解释了
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-6-8 23:26:48 | 显示全部楼层
还想问一下  write(fd[1],outpipe,50);   向fd[1]里写数据,为什么是从read(fd[0],inpipe,50); fd[0]里读呢?
回复 支持 反对

使用道具 举报

发表于 2007-6-9 06:15:56 | 显示全部楼层
Post by prayerwy2046
还想问一下  write(fd[1],outpipe,50);   向fd[1]里写数据,为什么是从read(fd[0],inpipe,50); fd[0]里读呢?

pipe(fd)把fd[0]和fd[1]连起来了阿,像一个管道一样.fd[0]是用来读的,fd[1]是用来写的.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表