From owner-freebsd-questions Sun Aug 31 00:03:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA25489 for questions-outgoing; Sun, 31 Aug 1997 00:03:00 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA25473 for ; Sun, 31 Aug 1997 00:02:35 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.8.6/8.8.5) id CAA05227; Sun, 31 Aug 1997 02:00:26 -0500 (EST) From: "John S. Dyson" Message-Id: <199708310700.CAA05227@dyson.iquest.net> Subject: Re: SHM limits and probs in 2.1.7.1 In-Reply-To: from Doug White at "Aug 30, 97 11:17:57 pm" To: dwhite@resnet.uoregon.edu Date: Sun, 31 Aug 1997 02:00:26 -0500 (EST) Cc: nordwick@scheme.xcf.berkeley.edu, freebsd-questions@FreeBSD.ORG Reply-To: dyson@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Doug White said: > On 27 Aug 1997, Jason Alan Nordwick wrote: > > > > > I am having problem with shm. Is there a limit to the amount > > that can be mapped into my process space ? > > yes; these are usually set by the shell. try `ulimit' to unlock these > limits. > > There are some constants in the kernel too. I don't know if the 2.1.7.1 > LINT had them in there though. > Note that earlier versions of the SHM code had some architectural problems, that limited the total system-wide amount available. The code mapped the shared regions into the kernel, and the amount of KVA (Kernel Virtual Address) space is limited. Recent versions of the SHM code in the FreeBSD kernel have no such limitation, and are fully pageable. John