diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/port/sysv_sema.c | 4 | ||||
-rw-r--r-- | src/backend/port/sysv_shmem.c | 20 | ||||
-rw-r--r-- | src/bin/initdb/initdb.sh | 4 |
3 files changed, 14 insertions, 14 deletions
diff --git a/src/backend/port/sysv_sema.c b/src/backend/port/sysv_sema.c index cef6cc06468..a555a22a82f 100644 --- a/src/backend/port/sysv_sema.c +++ b/src/backend/port/sysv_sema.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/port/sysv_sema.c,v 1.4 2002/09/04 20:31:24 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/port/sysv_sema.c,v 1.5 2003/03/25 16:15:44 petere Exp $ * *------------------------------------------------------------------------- */ @@ -128,7 +128,7 @@ InternalIpcSemaphoreCreate(IpcSemaphoreKey semKey, int numSems) "consumption of semaphores by reducing its max_connections parameter\n" "(currently %d).\n" "\n" - "The PostgreSQL Administrator's Guide contains more information about\n" + "The PostgreSQL documentation contains more information about\n" "configuring your system for PostgreSQL.\n\n", MaxBackends); diff --git a/src/backend/port/sysv_shmem.c b/src/backend/port/sysv_shmem.c index 60e5d0b478b..fc5c6e83c19 100644 --- a/src/backend/port/sysv_shmem.c +++ b/src/backend/port/sysv_shmem.c @@ -10,7 +10,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/port/sysv_shmem.c,v 1.4 2002/09/04 20:31:24 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/port/sysv_shmem.c,v 1.5 2003/03/25 16:15:44 petere Exp $ * *------------------------------------------------------------------------- */ @@ -96,7 +96,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, uint32 size) "\nThis error usually means that PostgreSQL's request for a shared memory\n" "segment exceeded your kernel's SHMMAX parameter. You can either\n" "reduce the request size or reconfigure the kernel with larger SHMMAX.\n" - "To reduce the request size (currently %u bytes), reduce\n" + "To reduce the request size (currently %u bytes), reduce\n" "PostgreSQL's shared_buffers parameter (currently %d) and/or\n" "its max_connections parameter (currently %d).\n" "\n" @@ -104,20 +104,20 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, uint32 size) "your kernel's SHMMIN parameter, in which case raising the request size or\n" "reconfiguring SHMMIN is called for.\n" "\n" - "The PostgreSQL Administrator's Guide contains more information about\n" - "shared memory configuration.\n\n", + "The PostgreSQL documentation contains more information about shared\n" + "memory configuration.\n\n", size, NBuffers, MaxBackends); else if (errno == ENOMEM) fprintf(stderr, "\nThis error usually means that PostgreSQL's request for a shared\n" - "memory segment exceeded available memory or swap space.\n" - "To reduce the request size (currently %u bytes), reduce\n" + "memory segment exceeded available memory or swap space.\n" + "To reduce the request size (currently %u bytes), reduce\n" "PostgreSQL's shared_buffers parameter (currently %d) and/or\n" "its max_connections parameter (currently %d).\n" "\n" - "The PostgreSQL Administrator's Guide contains more information about\n" - "shared memory configuration.\n\n", + "The PostgreSQL documentation contains more information about shared\n" + "memory configuration.\n\n", size, NBuffers, MaxBackends); else if (errno == ENOSPC) @@ -132,8 +132,8 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, uint32 size) "by reducing its shared_buffers parameter (currently %d) and/or\n" "its max_connections parameter (currently %d).\n" "\n" - "The PostgreSQL Administrator's Guide contains more information about\n" - "shared memory configuration.\n\n", + "The PostgreSQL documentation contains more information about shared\n" + "memory configuration.\n\n", size, NBuffers, MaxBackends); proc_exit(1); diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index 646b941cfa5..473b2786cf1 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -27,7 +27,7 @@ # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.186 2003/03/20 03:34:56 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.187 2003/03/25 16:15:44 petere Exp $ # #------------------------------------------------------------------------- @@ -483,7 +483,7 @@ fi if test x`pg_getlocale COLLATE` != xC && test x`pg_getlocale COLLATE` != xPOSIX; then echo "This locale setting will prevent the use of indexes for pattern matching" echo "operations. If that is a concern, rerun $CMDNAME with the collation order" - echo "set to \"C\". For more information see the Administrator's Guide." + echo "set to \"C\". For more information see the documentation." fi echo |