Linux下进程的创建与进程间通信

编制一段程序,实现进程间的管道通信。使用系统调用pipe()建立一条管道,两个子进程p1和p2分别向通道各写一句话:Thefirstchildprocessissendi... 编制一段程序,实现进程间的管道通信。使用系统调用pipe()建立一条管道,两个子进程p1和p2分别向通道各写一句话:
The first child process is sending message!
The second child process is sending message!

而父进程则从管道中读出来自两个进程的信息,显示在屏幕上。

示例
int fd[2];
char outpipe[100],inpipe[100];
pipe(fd); /*创建一个管道*/
write(fd[1],outpipe,100); /*向管道写长为100字节的串*/
read(fd[0],inpipe,100); /*从管道中读长为100字节的串*/

互斥访问管道
锁管道:lockf(fd[1], 1, 0)
管道解锁:lockf(fd[1], 0, 0)
C语言
展开
 我来答
kwydwuf
2010-10-14 · TA获得超过7410个赞
知道大有可为答主
回答量:1527
采纳率:71%
帮助的人:2005万
展开全部
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>

int main()
{
int fd[2], pid, len;
char inpipe[100], outpipe[100];

pipe(fd);

pid = fork();

if (pid == 0)
{
/* first child */
close(fd[0]);
strcpy(outpipe, "The first child process is sending message!");
lockf(fd[1], 1, 0);
write(fd[1], outpipe, 100);
lockf(fd[1], 0, 0);
exit(0);
}

pid = fork();
if (pid == 0)
{
/* 2nd child */
close(fd[0]);
strcpy(outpipe, "The second child process is sending message!");
lockf(fd[1], 1, 0);
write(fd[1], outpipe, 100);
lockf(fd[1], 0, 0);
exit(0);
}

/* parent */
close(fd[1]);
len = read(fd[0], inpipe, 100);
printf("RECV: %s\n", inpipe);

len = read(fd[0], inpipe, 100);
printf("RECV: %s\n", inpipe);

wait(NULL);
wait(NULL);
return 0;
}
Storm代理
2023-07-25 广告
StormProxies是一家提供动态住宅IP的服务商。动态住宅IP可以为用户提供更加灵活和稳定的网络连接,同时也可以用于一些特定的网络应用场景,例如网络游戏、视频直播等。使用StormProxies的动态住宅IP服务,用户可以通过更换IP... 点击进入详情页
本回答由Storm代理提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式