[3891] in linux-net channel archive
Re: EVEN MORE 2.0 vs 1.2 and INN config.
daemon@ATHENA.MIT.EDU (root)
Mon Jul 29 04:47:49 1996
From: root <root@berg.coso.com>
To: linux-net@vger.rutgers.edu
Date: Mon, 29 Jul 1996 10:39:32 +0200 (MET DST)
vfork() is a 'light' fork() which you can use if you only fork() to exec()
immediatly afterwards. Since linux has copy-on-write pages for the
child process in a fork() the overhead involved in forking is very low;
on systems which copy the entire address space the overhead is much
higher, which is why vfork() was invented. vfork() doesnt copy
the address space, since its going to be release anyway when you
exec().
Cees