Skip to content

Commit 3ce5c6f

Browse files
committed
Maybe "shared_buffers" is a slightly better name than "shmem_buffers" for -B.
1 parent f03fc94 commit 3ce5c6f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/src/sgml/runtime.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.20 2000/08/26 19:34:24 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.21 2000/08/28 11:57:40 petere Exp $
33
-->
44

55
<Chapter Id="runtime">
@@ -964,7 +964,7 @@ env PGOPTIONS='--geqo=off' psql
964964
</varlistentry>
965965

966966
<varlistentry>
967-
<term>SHMEM_BUFFERS (<type>integer</type>)</term>
967+
<term>SHARED_BUFFERS (<type>integer</type>)</term>
968968
<listitem>
969969
<para>
970970
Sets the number of shared memory buffers the database server
@@ -1030,7 +1030,7 @@ env PGOPTIONS='--geqo=off' psql
10301030
<tbody>
10311031
<row>
10321032
<entry>-B <replaceable>x</replaceable></entry>
1033-
<entry>shmem_buffers = <replaceable>x</replaceable></entry>
1033+
<entry>shared_buffers = <replaceable>x</replaceable></entry>
10341034
<entry></entry>
10351035
</row>
10361036
<row>

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Support for grand unified configuration scheme, including SET
55
* command, configuration file, and command line options.
66
*
7-
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.9 2000/08/25 10:00:31 petere Exp $
7+
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10 2000/08/28 11:57:41 petere Exp $
88
*
99
* Copyright 2000 by PostgreSQL Global Development Group
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -231,7 +231,7 @@ ConfigureNamesInt[] =
231231
*/
232232
{"max_connections", PGC_POSTMASTER, &MaxBackends,
233233
DEF_MAXBACKENDS, 1, MAXBACKENDS},
234-
{"shmem_buffers", PGC_POSTMASTER, &NBuffers,
234+
{"shared_buffers", PGC_POSTMASTER, &NBuffers,
235235
DEF_NBUFFERS, 16, INT_MAX},
236236
{"port", PGC_POSTMASTER, &PostPortName,
237237
DEF_PGPORT, 1, 65535},

0 commit comments

Comments
 (0)