aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-03-12 09:38:56 -0500
committerBruce Momjian <bruce@momjian.us>2011-03-12 09:38:56 -0500
commit94fe9c0f4e1672ccd830cb0aa7fd5ccce97d14ae (patch)
tree5a50e97ac0450e42f24243b5cf7a28aa821ec8c8 /src
parent3a3f39fdc00c6caa41d795475189ac844403b770 (diff)
downloadpostgresql-94fe9c0f4e1672ccd830cb0aa7fd5ccce97d14ae.tar.gz
postgresql-94fe9c0f4e1672ccd830cb0aa7fd5ccce97d14ae.zip
Use "backend process" rather than "backend server", where appropriate.
Diffstat (limited to 'src')
-rw-r--r--src/backend/libpq/pqsignal.c2
-rw-r--r--src/backend/main/main.c2
-rw-r--r--src/test/examples/testlibpq4.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/libpq/pqsignal.c b/src/backend/libpq/pqsignal.c
index 31e37e9a2b7..0fee280ae33 100644
--- a/src/backend/libpq/pqsignal.c
+++ b/src/backend/libpq/pqsignal.c
@@ -22,7 +22,7 @@
* how to handle signalling.
*
* signal(2) handling - this is here because it affects some of
- * the frontend commands as well as the backend server.
+ * the frontend commands as well as the backend processes.
*
* Ultrix and SunOS provide BSD signal(2) semantics by default.
*
diff --git a/src/backend/main/main.c b/src/backend/main/main.c
index 5d077888c95..43d182b4dba 100644
--- a/src/backend/main/main.c
+++ b/src/backend/main/main.c
@@ -310,7 +310,7 @@ help(const char *progname)
printf(_(" -O allow system table structure changes\n"));
printf(_(" -P disable system indexes\n"));
printf(_(" -t pa|pl|ex show timings after each query\n"));
- printf(_(" -T send SIGSTOP to all backend servers if one dies\n"));
+ printf(_(" -T send SIGSTOP to all backend processes if one dies\n"));
printf(_(" -W NUM wait NUM seconds to allow attach from a debugger\n"));
printf(_("\nOptions for single-user mode:\n"));
diff --git a/src/test/examples/testlibpq4.c b/src/test/examples/testlibpq4.c
index dafc6aecb12..0ec04313c0c 100644
--- a/src/test/examples/testlibpq4.c
+++ b/src/test/examples/testlibpq4.c
@@ -72,11 +72,11 @@ main(int argc, char **argv)
* defaults by looking up environment variables or, failing that, using
* hardwired constants
*/
- pghost = NULL; /* host name of the backend server */
- pgport = NULL; /* port of the backend server */
+ pghost = NULL; /* host name of the backend */
+ pgport = NULL; /* port of the backend */
pgoptions = NULL; /* special options to start up the backend
* server */
- pgtty = NULL; /* debugging tty for the backend server */
+ pgtty = NULL; /* debugging tty for the backend */
/* make a connection to the database */
conn1 = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName1);