- 论坛徽章:
- 0
|
最近看了一段使用管道实现父进程监听子进程状态的代码,具体实现
方法如下:
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <fcntl.h>;
- #include <unistd.h>;
- #include <sys/types.h>;
- void main()
- {
- pid_t pid;
- int fd[2], nfds, retcode;
- fd_set rdst;
- if (pipe(fd) < 0)
- printf("pipe error!\n");
- pid = fork();
- switch (pid)
- {
- case -1:
- close(fd[0]);
- close(fd[1]);
- printf("fork error!\n);
- break;
- case 0:
- close(fd[1]);
- do_something();
- break;
- default:
- close(fd[0]);
- nfds = fd[1];
- FD_ZERO(&rdst);
- FD_SET(fd[1], &rdst);
- nfds++;
- retcode = select(nfds, &rdst, NULL, NULL, NULL);
- if (retcode >; 0)
- {
- if (FD_ISSET(fd[1], &rdst))
- printf("child process has exit!\n");
- }
- break;
- }
- return ;
- }
复制代码
有一点不明白的是为何当子进程退出后,父进程的fd[1]描述符的状态会发生改变。请高手指点一下。 |
|