- 论坛徽章:
- 0
|
The vfork() system call can normally be used just like fork(2). It does
not work, however, to return while running in the child's context from
the procedure that called vfork() since the eventual return from vfork()
would then return to a no longer existent stack frame. Be careful, also,
to call _exit(2) rather than exit(3) if you cannot execve(2), since
exit(3) will flush and close standard I/O channels, and thereby mess up
the parent processes standard I/O data structures. (Even with fork(2) it
is wrong to call exit(3) since buffered data would then be flushed
twice.)
一般来说,我们可以像调用fork(2)一样调用 vfork()。但是,如果从调用vfork()的函数中返回,vfork()就不能如你所愿了,这样做,最终vfork()可能返回到已经不存在的栈环境。如果你vfork()后不执行execve(2), 那要注意了,用_exit(2)返回,而不是用exit(3)返回,因为exit(3)会flush和关闭standard I/O,因此会搅乱父进程的standard I/O数据结构。就是利用了fork(2),也不能用exit(3)来返回,因为缓存的数据会被重复flush。
翻译的强差人意。请高手指点。跟人感觉看这些东西要一个字一个字的看,毕竟_exit和_Exit不是一个东东。 |
|