diff options
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 160afe9f392..b4d475bb0ba 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -357,7 +357,7 @@ bool redirection_done = false; /* stderr redirected for syslogger? */ /* received START_AUTOVAC_LAUNCHER signal */ static volatile sig_atomic_t start_autovac_launcher = false; -/* the launcher needs to be signalled to communicate some condition */ +/* the launcher needs to be signaled to communicate some condition */ static volatile bool avlauncher_needs_signal = false; /* received START_WALRECEIVER signal */ @@ -3481,7 +3481,7 @@ HandleChildCrash(int pid, int exitstatus, const char *procname) * We only log messages and send signals if this is the first process * crash and we're not doing an immediate shutdown; otherwise, we're only * here to update postmaster's idea of live processes. If we have already - * signalled children, nonzero exit status is to be expected, so don't + * signaled children, nonzero exit status is to be expected, so don't * clutter log. */ take_action = !FatalError && Shutdown != ImmediateShutdown; @@ -5615,7 +5615,7 @@ StartAutovacuumWorker(void) * might not even be connected to shared memory, so don't try to call * AutoVacWorkerFailed.) Note that we also need to signal it so that it * responds to the condition, but we don't do that here, instead waiting - * for ServerLoop to do it. This way we avoid a ping-pong signalling in + * for ServerLoop to do it. This way we avoid a ping-pong signaling in * quick succession between the autovac launcher and postmaster in case * things get ugly. */ |