Skip to content

Commit 0fd2a79

Browse files
committed
Spelling adjustments
1 parent a02b8bd commit 0fd2a79

File tree

26 files changed

+39
-39
lines changed

26 files changed

+39
-39
lines changed

doc/src/sgml/config.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4083,7 +4083,7 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
40834083
This parameter can only be set in the <filename>postgresql.conf</filename>
40844084
file or on the server command line.
40854085
If this parameter is changed while the WAL receiver process is
4086-
running, that process is signalled to shut down and expected to
4086+
running, that process is signaled to shut down and expected to
40874087
restart with the new setting (except if <varname>primary_conninfo</varname>
40884088
is an empty string).
40894089
This setting has no effect if the server is not in standby mode.
@@ -4105,7 +4105,7 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
41054105
This parameter can only be set in the <filename>postgresql.conf</filename>
41064106
file or on the server command line.
41074107
If this parameter is changed while the WAL receiver process is running,
4108-
that process is signalled to shut down and expected to restart with the
4108+
that process is signaled to shut down and expected to restart with the
41094109
new setting.
41104110
This setting has no effect if <varname>primary_conninfo</varname> is not
41114111
set or the server is not in standby mode.
@@ -4227,7 +4227,7 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
42274227
The default is off. This parameter can only be set in the
42284228
<filename>postgresql.conf</filename> file or on the server command line.
42294229
If this parameter is changed while the WAL receiver process is running,
4230-
that process is signalled to shut down and expected to restart with
4230+
that process is signaled to shut down and expected to restart with
42314231
the new setting.
42324232
</para>
42334233
</listitem>
@@ -8062,7 +8062,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
80628062
treated the timeout as applying to the whole query string.)
80638063
In extended query protocol, the timeout starts running when any
80648064
query-related message (Parse, Bind, Execute, Describe) arrives, and
8065-
it is cancelled by completion of an Execute or Sync message.
8065+
it is canceled by completion of an Execute or Sync message.
80668066
</para>
80678067

80688068
<para>

src/backend/commands/async.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ asyncQueueFillWarning(void)
16541654
* behind. Waken them anyway if they're far enough behind, so that they'll
16551655
* advance their queue position pointers, allowing the global tail to advance.
16561656
*
1657-
* Since we know the BackendId and the Pid the signalling is quite cheap.
1657+
* Since we know the BackendId and the Pid the signaling is quite cheap.
16581658
*/
16591659
static void
16601660
SignalBackends(void)

src/backend/commands/vacuum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ vac_truncate_clog(TransactionId frozenXID,
16381638
* Update the wrap limit for GetNewTransactionId and creation of new
16391639
* MultiXactIds. Note: these functions will also signal the postmaster
16401640
* for an(other) autovac cycle if needed. XXX should we avoid possibly
1641-
* signalling twice?
1641+
* signaling twice?
16421642
*/
16431643
SetTransactionIdLimit(frozenXID, oldestxid_datoid);
16441644
SetMultiXactIdLimit(minMulti, minmulti_datoid, false);

src/backend/jit/llvm/llvmjit_expr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2448,7 +2448,7 @@ BuildV1Call(LLVMJitContext *context, LLVMBuilderRef b,
24482448
*v_fcinfo_isnull = LLVMBuildLoad(b, v_fcinfo_isnullp, "");
24492449

24502450
/*
2451-
* Add lifetime-end annotation, signalling that writes to memory don't
2451+
* Add lifetime-end annotation, signaling that writes to memory don't
24522452
* have to be retained (important for inlining potential).
24532453
*/
24542454
{

src/backend/port/win32/socket.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ pgwin32_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, c
618618
if (r != WAIT_TIMEOUT && r != WAIT_IO_COMPLETION && r != (WAIT_OBJECT_0 + numevents))
619619
{
620620
/*
621-
* We scan all events, even those not signalled, in case more than one
621+
* We scan all events, even those not signaled, in case more than one
622622
* event has been tagged but Wait.. can only return one.
623623
*/
624624
WSANETWORKEVENTS resEvents;

src/backend/port/win32/timer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pg_timer_thread(LPVOID param)
4848
r = WaitForSingleObjectEx(timerCommArea.event, waittime, FALSE);
4949
if (r == WAIT_OBJECT_0)
5050
{
51-
/* Event signalled from main thread, change the timer */
51+
/* Event signaled from main thread, change the timer */
5252
EnterCriticalSection(&timerCommArea.crit_sec);
5353
if (timerCommArea.value.it_value.tv_sec == 0 &&
5454
timerCommArea.value.it_value.tv_usec == 0)

src/backend/postmaster/autovacuum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ AutoVacLauncherMain(int argc, char *argv[])
653653
HandleAutoVacLauncherInterrupts();
654654

655655
/*
656-
* a worker finished, or postmaster signalled failure to start a
656+
* a worker finished, or postmaster signaled failure to start a
657657
* worker
658658
*/
659659
if (got_SIGUSR2)

src/backend/postmaster/checkpointer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ ReqCheckpointHandler(SIGNAL_ARGS)
819819
int save_errno = errno;
820820

821821
/*
822-
* The signalling process should have set ckpt_flags nonzero, so all we
822+
* The signaling process should have set ckpt_flags nonzero, so all we
823823
* need do is ensure that our main loop gets kicked out of any wait.
824824
*/
825825
SetLatch(MyLatch);

src/backend/postmaster/pgstat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6251,7 +6251,7 @@ pgstat_recv_resetslrucounter(PgStat_MsgResetslrucounter *msg, int len)
62516251
/* ----------
62526252
* pgstat_recv_autovac() -
62536253
*
6254-
* Process an autovacuum signalling message.
6254+
* Process an autovacuum signaling message.
62556255
* ----------
62566256
*/
62576257
static void

src/backend/postmaster/postmaster.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ bool redirection_done = false; /* stderr redirected for syslogger? */
357357
/* received START_AUTOVAC_LAUNCHER signal */
358358
static volatile sig_atomic_t start_autovac_launcher = false;
359359

360-
/* the launcher needs to be signalled to communicate some condition */
360+
/* the launcher needs to be signaled to communicate some condition */
361361
static volatile bool avlauncher_needs_signal = false;
362362

363363
/* received START_WALRECEIVER signal */
@@ -3481,7 +3481,7 @@ HandleChildCrash(int pid, int exitstatus, const char *procname)
34813481
* We only log messages and send signals if this is the first process
34823482
* crash and we're not doing an immediate shutdown; otherwise, we're only
34833483
* here to update postmaster's idea of live processes. If we have already
3484-
* signalled children, nonzero exit status is to be expected, so don't
3484+
* signaled children, nonzero exit status is to be expected, so don't
34853485
* clutter log.
34863486
*/
34873487
take_action = !FatalError && Shutdown != ImmediateShutdown;
@@ -5615,7 +5615,7 @@ StartAutovacuumWorker(void)
56155615
* might not even be connected to shared memory, so don't try to call
56165616
* AutoVacWorkerFailed.) Note that we also need to signal it so that it
56175617
* responds to the condition, but we don't do that here, instead waiting
5618-
* for ServerLoop to do it. This way we avoid a ping-pong signalling in
5618+
* for ServerLoop to do it. This way we avoid a ping-pong signaling in
56195619
* quick succession between the autovac launcher and postmaster in case
56205620
* things get ugly.
56215621
*/

0 commit comments

Comments
 (0)