mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Use "backend process" rather than "backend server", where appropriate.
This commit is contained in:
@ -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.
|
||||
*
|
||||
|
@ -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"));
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user