From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] vfork and paging From: rog@vitanuova.com MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20011003100354.1D00E19A3C@mail.cse.psu.edu> Date: Wed, 3 Oct 2001 11:16:06 +0100 Topicbox-Message-UUID: fb8a5caa-eac9-11e9-9e20-41e7f4b1d025 > there's a thread lib for plan 9? there is (see thread(2)). thread (i.e. shared memory multiprocess) programming isn't too hard if you have a decent IPC model. alef, plan 9's libthread, and Limbo all use essentially the same model, synchronous channel communication, based on Hoare's CSP. language support eases the difficulties substantially: the by-value lists, strings and tuples in Limbo make it easier to concentrate on the difficult bits while being assured that your data isn't being corrupted due to an oversight. rog.