免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1150 | 回复: 1
打印 上一主题 下一主题

为什么父进程一直阻塞呢? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-06-02 11:38 |只看该作者 |倒序浏览
本帖最后由 sunsweet_DK 于 2012-06-02 11:40 编辑

  1. #include<stdio.h>
  2. #include<unistd.h>
  3. #include<sys/types.h>
  4. int main()
  5. {
  6.      int fd[2];
  7.      pid_t pid1,pid2;
  8.      char *arg_net[] = {"netstat","-lant",NULL};
  9.      char *env_net[] = {"PATH=/bin",NULL};
  10.      char *arg_grep[] = {"grep","22",NULL};
  11.      char *env_grep[] = {"PATH=/bin",NULL};
  12.      if(pipe(fd) != 0)
  13.          exit(1);
  14.      if((pid1 = fork()) == 0){
  15.          printf("pid1 = %d\n",getpid());
  16.          close(1);
  17.          dup2(fd[1],1);
  18.          close(fd[0]);
  19.          close(fd[1]);
  20.          execve("/bin/netstat",arg_net,env_net);
  21.          exit(0);
  22.      }else if(pid1 < 0 ){
  23.          printf("fork error\n");
  24.          exit(1);
  25.      }


  26.      if((pid2 = fork()) == 0){
  27.          printf("pid2 = %d\n",getpid());
  28.          close(0);
  29.          dup2(fd[0],0);
  30.          close(fd[1]);
  31.          close(fd[0]);
  32.          execve("/bin/grep",arg_grep,env_grep);
  33.          exit(0);
  34.      }else if(pid2 < 0){
  35.          printf("fork error\n");
  36.          exit(2);
  37.      }
  38.      printf("parent = %d\n",getpid());
  39.      waitpid(pid1,NULL,0);
  40.      waitpid(pid2,NULL,0);
  41.      return 0;
  42. }
复制代码
程序不能正常退出,父进程一直阻塞,求指点

论坛徽章:
0
2 [报告]
发表于 2012-06-02 12:06 |只看该作者
我发现错误了,子进程没有退出,调用了execve的进程伤不起呀,exit()根本没执行
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP