- 论坛徽章:
- 0
|
本帖最后由 sunsweet_DK 于 2012-06-02 11:40 编辑
-
- #include<stdio.h>
- #include<unistd.h>
- #include<sys/types.h>
- int main()
- {
- int fd[2];
- pid_t pid1,pid2;
- char *arg_net[] = {"netstat","-lant",NULL};
- char *env_net[] = {"PATH=/bin",NULL};
- char *arg_grep[] = {"grep","22",NULL};
- char *env_grep[] = {"PATH=/bin",NULL};
- if(pipe(fd) != 0)
- exit(1);
- if((pid1 = fork()) == 0){
- printf("pid1 = %d\n",getpid());
- close(1);
- dup2(fd[1],1);
- close(fd[0]);
- close(fd[1]);
- execve("/bin/netstat",arg_net,env_net);
- exit(0);
- }else if(pid1 < 0 ){
- printf("fork error\n");
- exit(1);
- }
-
-
- if((pid2 = fork()) == 0){
- printf("pid2 = %d\n",getpid());
- close(0);
- dup2(fd[0],0);
- close(fd[1]);
- close(fd[0]);
- execve("/bin/grep",arg_grep,env_grep);
- exit(0);
- }else if(pid2 < 0){
- printf("fork error\n");
- exit(2);
- }
- printf("parent = %d\n",getpid());
- waitpid(pid1,NULL,0);
- waitpid(pid2,NULL,0);
- return 0;
- }
复制代码 程序不能正常退出,父进程一直阻塞,求指点 |
|