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