|
37 | 37 | * |
38 | 38 | * |
39 | 39 | * IDENTIFICATION |
40 | | - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.544 2007/11/05 00:00:34 neilc Exp $ |
| 40 | + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $ |
41 | 41 | * |
42 | 42 | * NOTES |
43 | 43 | * |
@@ -2201,7 +2201,7 @@ reaper(SIGNAL_ARGS) |
2201 | 2201 | WalWriterPID=0; |
2202 | 2202 | if (!EXIT_STATUS_0(exitstatus)) |
2203 | 2203 | HandleChildCrash(pid,exitstatus, |
2204 | | -_("wal writer process")); |
| 2204 | +_("WAL writer process")); |
2205 | 2205 | continue; |
2206 | 2206 | } |
2207 | 2207 |
|
@@ -2492,7 +2492,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus) |
2492 | 2492 | "server process" */ |
2493 | 2493 | (errmsg("%s (PID %d) was terminated by exception 0x%X", |
2494 | 2494 | procname,pid,WTERMSIG(exitstatus)), |
2495 | | -errhint("See C include file \"ntstatus.h\" for a description of thehex value."))); |
| 2495 | +errhint("See C include file \"ntstatus.h\" for a description of thehexadecimal value."))); |
2496 | 2496 | #elif defined(HAVE_DECL_SYS_SIGLIST)&&HAVE_DECL_SYS_SIGLIST |
2497 | 2497 | ereport(lev, |
2498 | 2498 |
|
@@ -4014,7 +4014,7 @@ StartChildProcess(AuxProcType type) |
4014 | 4014 | break; |
4015 | 4015 | caseWalWriterProcess: |
4016 | 4016 | ereport(LOG, |
4017 | | - (errmsg("could not forkwal writer process: %m"))); |
| 4017 | + (errmsg("could not forkWAL writer process: %m"))); |
4018 | 4018 | break; |
4019 | 4019 | default: |
4020 | 4020 | ereport(LOG, |
|