Commit b5a47f24 authored by Peter Eisentraut's avatar Peter Eisentraut

Wording changes

parent 156d6480
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.544 2007/11/05 00:00:34 neilc Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $
* *
* NOTES * NOTES
* *
...@@ -2201,7 +2201,7 @@ reaper(SIGNAL_ARGS) ...@@ -2201,7 +2201,7 @@ reaper(SIGNAL_ARGS)
WalWriterPID = 0; WalWriterPID = 0;
if (!EXIT_STATUS_0(exitstatus)) if (!EXIT_STATUS_0(exitstatus))
HandleChildCrash(pid, exitstatus, HandleChildCrash(pid, exitstatus,
_("wal writer process")); _("WAL writer process"));
continue; continue;
} }
...@@ -2492,7 +2492,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus) ...@@ -2492,7 +2492,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus)
"server process" */ "server process" */
(errmsg("%s (PID %d) was terminated by exception 0x%X", (errmsg("%s (PID %d) was terminated by exception 0x%X",
procname, pid, WTERMSIG(exitstatus)), procname, pid, WTERMSIG(exitstatus)),
errhint("See C include file \"ntstatus.h\" for a description of the hex value."))); errhint("See C include file \"ntstatus.h\" for a description of the hexadecimal value.")));
#elif defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST #elif defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST
ereport(lev, ereport(lev,
...@@ -4014,7 +4014,7 @@ StartChildProcess(AuxProcType type) ...@@ -4014,7 +4014,7 @@ StartChildProcess(AuxProcType type)
break; break;
case WalWriterProcess: case WalWriterProcess:
ereport(LOG, ereport(LOG,
(errmsg("could not fork wal writer process: %m"))); (errmsg("could not fork WAL writer process: %m")));
break; break;
default: default:
ereport(LOG, ereport(LOG,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment