From mboxrd@z Thu Jan 1 00:00:00 1970 From: ron minnich To: 9fans@cse.psu.edu Subject: Re: [9fans] Threads: Sewing badges of honor onto a Kernel In-Reply-To: <0d7bea785d989cd275b7ca67cfa6cdeb@yourdomain.dom> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Date: Thu, 26 Feb 2004 22:43:59 -0700 Topicbox-Message-UUID: fcefc3ac-eacc-11e9-9e20-41e7f4b1d025 I did the original rfork for freebsd, and I wrote it so I split the stacks too. It was lovely, since you just rforked and all was shared save the stack -- no assembly required. When they did the committed version, after fork, all was shared. This sucked. It was quite a mess to fix up your stack so you weren't walking on each other's stack -- required assembly goo to make it go. I hated it and stopped using it. So I like plan 9 rfork quite a bit. I think Linus/Linux are wrong. ron