From owner-freebsd-hackers Mon Jul 8 06:07:02 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA02552 for hackers-outgoing; Mon, 8 Jul 1996 06:07:02 -0700 (PDT) Received: from terra.Sarnoff.COM (terra.sarnoff.com [130.33.11.203]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id GAA02531 for ; Mon, 8 Jul 1996 06:06:54 -0700 (PDT) Received: (from rminnich@localhost) by terra.Sarnoff.COM (8.6.12/8.6.12) id JAA18964; Mon, 8 Jul 1996 09:05:47 -0400 Date: Mon, 8 Jul 1996 09:05:46 -0400 (EDT) From: "Ron G. Minnich" X-Sender: rminnich@terra To: Julian Assange cc: freebsd-hackers@freebsd.org Subject: Re: filemalloc etc. for shared memory between processes In-Reply-To: <199607072255.IAA05120@suburbia.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > I am about to develop one of these myself only a little more complex. > Can anyone give me some advise on how I can force malloc (or equal) to > use only a particular region of memory? i.e so if process1 maintains a > hashed list, complete with string pointers to variable length strings in > the nodes all children will be able to see this list? you mean children as in via fork(), right? rfork will get you a little bit of this. ron