当前位置:   article > 正文

学习分享:fork函数与vfork函数的区别

学习分享:fork函数与vfork函数的区别

一、fork函数

(一)fork函数头文件

       #include <sys/types.h>
       #include <unistd.h>

(二)fork函数原型

         pid_t fork(void);

(三)fork函数的作用

通过复制正在调用的进程来创建一个新的进程,这个新的进程被称为子进程。

(四)返回值

父进程:返回子进程id

子进程:返回0

错误:返回-1

(五)用法展示

  1. #include <strings.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5. #include <sys/types.h>
  6. #include <unistd.h>
  7. int main(int argc, char *argv[])
  8. {
  9. pid_t pid = fork();//创建子进程
  10. if(pid == -1)
  11. {
  12. perror("fork");
  13. return -1;
  14. } //判断是否创建成功
  15. if(pid == 0) //返回0则为子进程
  16. {
  17. printf("the child id is:%d,the parent id is:%d\n",getpid(),getppid());
  18. }
  19. else //否则为父进程
  20. {
  21. printf("the parent id is:%d,my parent id is:%d",getpid(),getppid());
  22. }
  23. return 0;
  24. }

二、vfork函数

(一)vfork函数头文件

       #include <sys/types.h>
       #include <unistd.h>

(二)vfork函数原型

         pid_t vfork(void);

(三)vfork函数的作用

vfork函数拥有跟fork函数一样用于创建子进程的作用,但是vfork并不拷贝父进程的叶表

(四)返回值

父进程:返回子进程id

子进程:返回0

错误:返回-1

(五)用法展示

  1. #include <strings.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5. #include <sys/types.h>
  6. #include <unistd.h>
  7. int main(int argc, char *argv[])
  8. {
  9. pid_t pid = vfork();//创建子进程
  10. if(pid == -1)
  11. {
  12. perror("vfork");
  13. return -1;
  14. } //判断是否创建成功
  15. #include <strings.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #include <stdio.h>
  19. #include <sys/types.h>
  20. #include <unistd.h>
  21. int main(int argc, char *argv[])
  22. {
  23. pid_t pid = fork();//创建子进程
  24. if(pid == -1)
  25. {
  26. perror("fork");
  27. return -1;
  28. } //判断是否创建成功
  29. if(pid == 0) //返回0则为子进程
  30. {
  31. printf("the child id is:%d,the parent id is:%d\n",getpid(),getppid());
  32. }
  33. else //否则为父进程
  34. {
  35. printf("the parent id is:%d,my parent id is:%d",getpid(),getppid());
  36. }
  37. return 0;
  38. }
  39. return 0;
  40. }

(三)区别

vfork不将父进程中的地址空间完全复制到子进程,仅与父进程共享数据段,fork函数父子进程的运行次序是不确定的,而vfork函数保证了子进程先运行,在调用exec 或exit 之前与父进程数据是共享的,在它调用exec或exit 之后父进程才可能被调度运行。如果在调用这两个函数之前子进程依赖于父进程的进一步动作,则会导致死锁。

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

闽ICP备14008679号