Chinaunix首页 | 论坛 | 博客
  • 博客访问: 73725
  • 博文数量: 35
  • 博客积分: 1420
  • 博客等级: 上尉
  • 技术积分: 306
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-15 13:33
个人简介

自强不息!

文章分类

全部博文(35)

文章存档

2020年(1)

2017年(1)

2011年(3)

2010年(15)

2009年(2)

2008年(2)

2007年(1)

2006年(10)

我的朋友

分类: LINUX

2008-04-17 18:16:55

Linux 进程间管道双向通讯实例,一下为源代码:

#define INPUT 0
#define OUTPUT 1

void main() {
  int file_descriptors[2],pipe_com2[2];
  int spawned_process_pid;
  char buf[256]={0};
  int returned_count,i;
  pipe(file_descriptors);
  pipe(pipe_com2);
       
  if((spawned_process_pid = fork()) == -1) {
    printf("Error in fork\n");
    exit(1);
  }

  if(spawned_process_pid == 0) {
  for(i=0;i<20;i++){
    printf("in the spawned (child) process...\n");
    // The spawned (child) process will write data back to
    // the spawning (parent) process.  The spawned process
    // does not need the input file descriptor, so we close it:
    close(file_descriptors[INPUT]);
    close(pipe_com2[OUTPUT]);

    write(file_descriptors[OUTPUT], "test data child", strlen("test data child"));
    returned_count = read(pipe_com2[INPUT],buf,sizeof(buf));
    printf("%d bytes of data received from spawned process: %s\n",
           returned_count, buf);
       usleep(20);
       }
    exit(0);
  } else {
  for(i=0;i<20;i++){
    printf("in the spawning (parent) process...\n");
    // The spawning (parent) process will just read data
    // (that is sent from the spawned process) from the pipe,
    // so we can close the input file descriptor:
    close(file_descriptors[OUTPUT]);
    close(pipe_com2[INPUT]);
   
    // wait for data sent by the spawned (child) process:
    write(pipe_com2[OUTPUT], "test data father", strlen("test data father"));
    returned_count = read(file_descriptors[INPUT],
                          buf,
                          sizeof(buf));
    printf("%d bytes of data received from spawned process: %s\n",
           returned_count, buf);
       usleep(20);
       }
  }
}
阅读(925) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~