免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2876 | 回复: 4
打印 上一主题 下一主题

高手求救,vfork问题! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-07-12 15:05 |只看该作者 |倒序浏览
#include "apue.h"

static void f1(),f2();

int main()
{
        f1();
        f2();
        printf("main\n");
        _exit(0);
}

static void f1()
{
        pid_t pid;
        printf("f1\n");
        if((pid=vfork())<-1)
                err_sys("vfork error");
}
static void f2()
{
        printf("f2\n");
}
本人在redhat9下编译后,程序输出如下:
f1
f2
main
main
不明白为什么f2才输出一次?哪位高手可以解答一下?谢谢!

论坛徽章:
0
2 [报告]
发表于 2007-07-18 17:39 |只看该作者
关注中,我执行的结果是

  1. f1
  2. f2
  3. main
  4. f1
复制代码

论坛徽章:
0
3 [报告]
发表于 2007-07-19 11:28 |只看该作者
确实是比较怪, vfork的MAN手册中说其是未定义的.
[QOUTE]
       The vfork() function has the same effect
       as fork(), except that the behaviour is undefined if the  process  cre-
       ated  by vfork() either modifies any data other than a variable of type
       pid_t used to store the return value from vfork(), or returns from  the
       function  in  which  vfork()  was  called
,  or calls any other function
       before successfully calling _exit() or one  of  the  exec()  family  of
       functions.
[/QOUTE]
而跟踪程序的运行则是main->f1->main->f2->main->f1, 即最终又回到了调用vfork的那个函数中, 将这个函数再执行一次. 而同样的不使用调用函数的方式, 直接在main函数中使用vfork则没有楼主的那种现象出现. 我个人认为可能是vfork自身的问题.  
希望高手能指教一下.
代码如下:

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<unistd.h>
  4. #include<sys/types.h>

  5. int main()
  6. {
  7.         pid_t pid;
  8.         printf("f1\n");
  9.         if ((pid = vfork()) < 0)
  10.         {
  11.                 perror("vfork\n");
  12.                 exit(1);
  13.         }

  14.         printf("f2\n");
  15.         printf("main\n");
  16.         exit(0);
  17. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2007-07-19 16:30 |只看该作者
我是这样理解,不知道对不对
vfork并不复制父进程空间,也不会存访该地址空间,只是在父进程空间运行,所以创建子后,运行时并不调用f2.

论坛徽章:
0
5 [报告]
发表于 2007-07-19 16:35 |只看该作者
还有!!vfork并不是这样用的,调用它的目的主要是为了执行exec或exit函数,所以它的实现机制和fork的是有区别的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP