zoukankan      html  css  js  c++  java
  • 多进程小例子--fork+pipe

     1 #include<stdio.h>
      2 #include<unistd.h>
      3
      4 #define m 6
      5 int main()
      6 {
      7         int pipefd[2];
      8         int pid;
      9         int m1;
     10
     11         if(pipe(pipefd)<0)
     12         {
     13                 printf("unable to create pipe! ");
     14                 return 1;
     15         }
     16         pid=fork();
     17         if(pid>0)    //parent
     18         {
     19                 m1=m;
     20                 close(pipefd[0]);  //close read end
     21                 write(pipefd[1],&m1,sizeof(int)); //read m1
     22                 wait(NULL);  // wait for child complete
     23                 close(pipefd[1]);
     24         }
     25         else if(pid==0)
     26         {
     27                 close(pipefd[1]);
     28                 read(pipefd[0],&m1,sizeof(int));  //read m1
     29                 while(m1>0)
     30                 {
     31                         printf("hello world! ");
     32                         m1--;
     33                 }
     34                 close(pipefd[0]);
     35         }
     36         else
     37         {
     38                 printf("unable to firk! ");
     39                 return 1;
     40         }
     41         return 0;
     42 }

  • 相关阅读:
    PHP获取当前页面完整URL的方法
    PHP中常见的提示对照表
    PHP语言中使用JSON和将json还原成数组
    PHP中被定义为false的
    yum
    PHP中计划任务
    command shell 的知识整理
    js的包管理工具bower安装
    Shell脚本
    liunx中计算机壳层
  • 原文地址:https://www.cnblogs.com/zhangyabin---acm/p/3175627.html
Copyright © 2011-2022 走看看