Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site brl-vgr.ARPA Path: utzoo!linus!vaxine!wjh12!harvard!seismo!brl-tgr!brl-vgr!gwyn From: gwyn@brl-vgr.ARPA (Doug Gwyn ) Newsgroups: net.unix-wizards Subject: Re: Several processes per address space? Message-ID: <505@brl-vgr.ARPA> Date: Sat, 30-Jun-84 01:18:24 EDT Article-I.D.: brl-vgr.505 Posted: Sat Jun 30 01:18:24 1984 Date-Received: Tue, 10-Jul-84 04:17:17 EDT References: <2008@decwrl.UUCP> Organization: Ballistics Research Lab Lines: 7 I am not sure what you mean by processes sharing an address space. After a fork(2) call on any UNIX system, there are two processes that in some sense share an address space (the instruction space may really be shared, under some circumstances). On BSD systems, a vfork(2) will actually share data space. On UNIX System V, there is "shared memory" support, which is supposed to be in BSD some day. One guesses that you are really interested in "shared memory".