From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <2d5a784f0608120744o580d06c1vbd7e08e7f5951b06@mail.gmail.com> Date: Sat, 12 Aug 2006 10:44:08 -0400 From: "david bulkow" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@cse.psu.edu> Subject: Re: Re: [9fans] APE fork() In-Reply-To: <44DDCCC6.9010709@comtv.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <114497aa64fc109a727c87b528cfd1ea@mail.gmx.net> <44DDCCC6.9010709@comtv.ru> Topicbox-Message-UUID: 9cbf65f0-ead1-11e9-9d60-3106f5b1d025 On 8/12/06, Victor Nazarov wrote: > POSIX-fork() copies data and bss segmets, child process doesn't share > data with it's parent. vfork() causes both child and parent to share address space. I believe this was introduced to make the fork/exec sequence faster as the address space COW didn't need to be setup.