Tagged Questions
7
votes
3answers
1k views
Why should a child of a vfork or fork call _exit() instead of exit()?
From the man page of vfork():
vfork() differs from fork() in that
the parent is suspended until the
child makes a call to execve(2) or
_exit(2). The child shares all memory with its ...