X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.144]) by svr1.postgresql.org (Postfix) with ESMTP id 7A244528D0 for ; Fri, 17 Jun 2005 10:11:40 -0300 (ADT) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 15655-08 for ; Fri, 17 Jun 2005 13:11:36 +0000 (GMT) Received: from candle.pha.pa.us (candle.pha.pa.us [64.139.89.126]) by svr1.postgresql.org (Postfix) with ESMTP id 2BA9F528A9 for ; Fri, 17 Jun 2005 10:11:32 -0300 (ADT) Received: (from pgman@localhost) by candle.pha.pa.us (8.11.6/8.11.6) id j5HDBad26944; Fri, 17 Jun 2005 09:11:36 -0400 (EDT) From: Bruce Momjian Message-Id: <200506171311.j5HDBad26944@candle.pha.pa.us> Subject: Re: NetBSD kernel resource configuration In-Reply-To: To: Kris Jurka Date: Fri, 17 Jun 2005 09:11:36 -0400 (EDT) Cc: pgsql-docs@postgresql.org X-Mailer: ELM [version 2.4ME+ PL121 (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=ELM1119013896-10664-0_ Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.org X-Spam-Status: No, hits=0.009 tagged_above=0 required=5 tests=AWL X-Spam-Level: X-Archive-Number: 200506/25 X-Sequence-Number: 3118 --ELM1119013896-10664-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Kris Jurka wrote: > > The documentation describing NetBSD kernel configuration mentions that it > uses the "option" keyword like OpenBSD, but in fact it uses the "options" > keyword like FreeBSD. > > http://developer.postgresql.org/docs/postgres/kernel-resources.html#SYSVIPC > > http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/arch/i386/conf/GENERIC?rev=1.674&content-type=text/x-cvsweb-markup Fix applied. Thanks. This problem doesn't appear in the 8.0.X docs. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 --ELM1119013896-10664-0_ Content-Transfer-Encoding: 7bit Content-Type: text/plain Content-Disposition: inline; filename="/bjm/diff" Index: doc/src/sgml/runtime.sgml =================================================================== RCS file: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v retrieving revision 1.327 diff -c -c -r1.327 runtime.sgml *** doc/src/sgml/runtime.sgml 17 Jun 2005 03:25:51 -0000 1.327 --- doc/src/sgml/runtime.sgml 17 Jun 2005 13:04:21 -0000 *************** *** 4544,4551 **** FreeBSD versions before 4.0 work like NetBSD and ! OpenBSD (see below), except that the configuration file uses the ! keyword "options" instead of "option". --- 4544,4550 ---- FreeBSD versions before 4.0 work like NetBSD and ! OpenBSD (see below). *************** *** 4561,4577 **** to be enabled when the kernel is compiled. (They are by default.) The maximum size of shared memory is determined by the option SHMMAXPGS (in pages). The following ! shows an example of how to set the various parameters: ! option SYSVSHM ! option SHMMAXPGS=4096 ! option SHMSEG=256 ! ! option SYSVSEM ! option SEMMNI=256 ! option SEMMNS=512 ! option SEMMNU=256 ! option SEMMAP=256 --- 4560,4577 ---- to be enabled when the kernel is compiled. (They are by default.) The maximum size of shared memory is determined by the option SHMMAXPGS (in pages). The following ! shows an example of how to set the various parameters ! (OpenBSD uses option instead): ! options SYSVSHM ! options SHMMAXPGS=4096 ! options SHMSEG=256 ! ! options SYSVSEM ! options SEMMNI=256 ! options SEMMNS=512 ! options SEMMNU=256 ! options SEMMAP=256 --ELM1119013896-10664-0_--