当前位置:   article > 正文

Linux父进程创建子进程的方法,监控子进程的结束_父进程创建子进程后监控子进程状态

父进程创建子进程后监控子进程状态

一、父进程创建子进程,使用fork(), 一次fork() 两次返回,一次返回的是父进程自己,一次返回的是子进程的运行空间。

二、父进程必须监控子进程的运行状态,等待子进程退出后,使用wait()进行关闭,否则,如果父进程先退出,子进程就没有父亲了,就变成了僵尸进程,此时退出时,就会被系统进程init监控到,然后由系统进程init进行关闭和释放资源。


三、运行下列的代码,结果如下:


[zhou@localhost code]$ ./a.out 
I am child. my pid=3448 parent pid=3447 
I am parent. my pid=3447  
 wait for child to exit ... 
child pid = 3448 exit code=256 
 success for wait for child to exit. 
[zhou@localhost code]$ 


  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <errno.h>
  4. int main()
  5. {
  6. pid_t fpid;
  7. int count =0;
  8. fpid = fork();
  9. if( fpid < 0)
  10. {
  11. printf("\r\n error");
  12. }
  13. else if( 0 == fpid)
  14. {
  15. printf("I am child. my pid=%ld parent pid=%ld \r\n", (long)getpid(),(long)getppid());
  16. exit(1);
  17. }
  18. else
  19. {
  20. int exitcode = 0;
  21. long ret;
  22. sleep(1);
  23. printf("I am parent. my pid=%d \r\n", getpid());
  24. printf(" wait for child to exit ... \r\n");
  25. ret = wait(&exitcode);
  26. while( -1 != ret )
  27. {
  28. printf("child pid = %ld exit code=%d \r\n", ret, exitcode);
  29. if(errno == ECHILD) break;
  30. sleep(1);
  31. ret = wait(&exitcode);
  32. }
  33. printf(" success for wait for child to exit. \r\n");
  34. }
  35. return 0;
  36. }



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/882946
推荐阅读
相关标签
  

闽ICP备14008679号