[slightly OT] In series of funny manual pages: linux vfork
Posted: Wed Mar 28, 2007 8:42 am
This is only "slightly OT" as the issue in question is definitely related to OS development, but...
The following is found in the manual page for vfork(2) on my system:
Especially the "may be a bit similar to" made me laugh.
The following is found in the manual page for vfork(2) on my system:
Code: Select all
CONFORMING TO
The vfork call may be a bit similar to calls with the same name in other
operating systems. The requirements put on vfork by the standards are
weaker than those put on fork, so an implementation where the two are syn-
onymous is compliant. In particular, the programmer cannot rely on the
parent remaining blocked until a call of execve() or _exit() and cannot
rely on any specific behaviour w.r.t. shared memory.