Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 94fe9c0

Browse files
committed
Use "backend process" rather than "backend server", where appropriate.
1 parent 3a3f39f commit 94fe9c0

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

doc/src/sgml/libpq.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ int PQsocket(const PGconn *conn);
16121612
<para>
16131613
Returns the process <acronym>ID</acronym>
16141614
(PID)<indexterm><primary>PID</><secondary>determining PID of
1615-
server process</><tertiary>in libpq</></> of the backend server
1615+
server process</><tertiary>in libpq</></> of the backend
16161616
process handling this connection.
16171617

16181618
<synopsis>

doc/src/sgml/problems.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</listitem>
7979
</itemizedlist>
8080

81-
Here <quote>program</quote> refers to any executable, not only the backend server.
81+
Here <quote>program</quote> refers to any executable, not only the backend process.
8282
</para>
8383

8484
<para>
@@ -280,9 +280,9 @@
280280
When writing a bug report, please avoid confusing terminology.
281281
The software package in total is called <quote>PostgreSQL</quote>,
282282
sometimes <quote>Postgres</quote> for short. If you
283-
are specifically talking about the backend server, mention that, do not
283+
are specifically talking about the backend process, mention that, do not
284284
just say <quote>PostgreSQL crashes</quote>. A crash of a single
285-
backend server process is quite different from crash of the parent
285+
backend process is quite different from crash of the parent
286286
<quote>postgres</> process; please don't say <quote>the server
287287
crashed</> when you mean a single backend process went down, nor vice versa.
288288
Also, client programs such as the interactive frontend <quote><application>psql</application></quote>

doc/src/sgml/query.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ INSERT INTO weather (date, city, temp_hi, temp_lo)
264264
COPY weather FROM '/home/user/weather.txt';
265265
</programlisting>
266266

267-
where the file name for the source file must be available to the
268-
backend server machine, not the client, since the backend server
267+
where the file name for the source file must be available on the
268+
machine running the backend process, not the client, since the backend process
269269
reads the file directly. You can read more about the
270270
<command>COPY</command> command in <xref linkend="sql-copy">.
271271
</para>

doc/src/sgml/ref/pg_ctl-ref.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ PostgreSQL documentation
134134
<application>pg_ctl</application> is a utility for initializing a
135135
<productname>PostgreSQL</productname> database cluster, starting,
136136
stopping, or restarting the <productname>PostgreSQL</productname>
137-
backend server (<xref linkend="app-postgres">), or displaying the
137+
database server (<xref linkend="app-postgres">), or displaying the
138138
status of a running server. Although the server can be started
139139
manually, <application>pg_ctl</application> encapsulates tasks such
140140
as redirecting log output and properly detaching from the terminal

src/backend/libpq/pqsignal.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* how to handle signalling.
2323
*
2424
* signal(2) handling - this is here because it affects some of
25-
* the frontend commands as well as the backend server.
25+
* the frontend commands as well as the backend processes.
2626
*
2727
* Ultrix and SunOS provide BSD signal(2) semantics by default.
2828
*

src/backend/main/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ help(const char *progname)
310310
printf(_(" -O allow system table structure changes\n"));
311311
printf(_(" -P disable system indexes\n"));
312312
printf(_(" -t pa|pl|ex show timings after each query\n"));
313-
printf(_(" -T send SIGSTOP to all backend servers if one dies\n"));
313+
printf(_(" -T send SIGSTOP to all backend processes if one dies\n"));
314314
printf(_(" -W NUM wait NUM seconds to allow attach from a debugger\n"));
315315

316316
printf(_("\nOptions for single-user mode:\n"));

src/test/examples/testlibpq4.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ main(int argc, char **argv)
7272
* defaults by looking up environment variables or, failing that, using
7373
* hardwired constants
7474
*/
75-
pghost = NULL; /* host name of the backend server */
76-
pgport = NULL; /* port of the backend server */
75+
pghost = NULL; /* host name of the backend */
76+
pgport = NULL; /* port of the backend */
7777
pgoptions = NULL; /* special options to start up the backend
7878
* server */
79-
pgtty = NULL; /* debugging tty for the backend server */
79+
pgtty = NULL; /* debugging tty for the backend */
8080

8181
/* make a connection to the database */
8282
conn1 = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName1);

0 commit comments

Comments
 (0)