- 论坛徽章:
- 0
|
确实是比较怪, 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自身的问题.
希望高手能指教一下.
代码如下:
- #include<stdio.h>
- #include<stdlib.h>
- #include<unistd.h>
- #include<sys/types.h>
- int main()
- {
- pid_t pid;
- printf("f1\n");
- if ((pid = vfork()) < 0)
- {
- perror("vfork\n");
- exit(1);
- }
- printf("f2\n");
- printf("main\n");
- exit(0);
- }
复制代码 |
|