进程的管道通信实验

时间:2015-01-13 11:25:57
【文件属性】:
文件名称:进程的管道通信实验
文件大小:120KB
文件格式:DOC
更新时间:2015-01-13 11:25:57
进程的管道通信实验 进程的管道通信实验 实验四 进程的管道通信实验 1、了解什么是管道 2、熟悉UNIX/LINUX支持的管道通信方式 1、了解什么是管道 2、熟悉UNIX/LINUX支持的管道通信方式 利用linux下的vi编辑器及GCC编辑工具完成实验 PC机器linux操作系统 编写程序实现进程的管道通信。用系统调用pipe( )建立一管道,二个子进程P1和P2分别向管道各写一句话: Child 1 is sending a message! Child 2 is sending a message! 父进程从管道中读出二个来自子进程的信息并显示(要求先接收P1,后P2)。 程序部分: #include #include #include int pid1,pid2; 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字节的串*/

网友评论

  • 比较简单,能理解