红联Linux门户
Linux帮助

函数fork()与vfork()的对比

发布时间:2016-12-07 10:08:25来源:linux网站作者:当今明月
下面这篇文章中有关于这两个函数的对比:
函数fork()与vfork()的对比
但是例子中有一个明显的错误,今天实验测试中有所发现。
 
在使用前者的时候 父子进程之间是相对独立的空间,无论是全局变量还是局部变量都是保持了良好的独立性。
在使用后者函数的时候,父子进程之间只是共享全局变量,对于局部变量而言,仍然保持了独立性,可能是初学者的原因,这部分内容还在寻找理论支撑,暂时先把实验代码和实验结果附录在下面,供以后分析时候参考。
 
使用fork函数的代码:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int global=5;
int main(int argc, char *argv[]) {
pid_t pid;
int count;
int val=1;
// printf("currut pid is %d\n",getpid());
pid = fork();
// printf("the first time %d\n",pid);
// printf("the second time %d\n",pid);
// printf("count:%d\n",count);
// count++;
// printf("count:%d\n",count);   
if (pid == 0) {
count=3;
printf("Here is child, my pid = %d, parent's pid = %d\n", getpid(), getppid());
while(count-->0){
global++;
val++;
printf("child is running\n");
sleep(1); 
}
printf("child global:%d val:%d\n",global,val);
//        exit(0);
} else if(pid > 0) {
count=5;
printf("Here is parent, my pid = %d, child's pid = %d\n", getpid(), pid);
while(count-->0){
global++;
val++;
printf("parent is running\n");
sleep(1);
}
printf("parent global:%d val:%d\n",global,val);
// sleep(10);
} else {
perror("fork error\n");
}
// printf("the third time %d\n",pid);
// printf("the fourth time %d\n",pid);
return 0;
}
 
运行结果如图所示:
函数fork()与vfork()的对比
 
这里将fork函数变为vfork函数之后执行结果如图所示:
函数fork()与vfork()的对比
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26657.html